* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d2420;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #244c3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #fbfaf8;
  border-bottom: 1px solid #e2ddd5;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #244c3a;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 16px;
  background: #f0e6d8;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw;
  gap: 32px;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  flex: 1 1 320px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: #3f4a44;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #244c3a;
  color: #fff;
}

.btn.secondary {
  background: #d7c6b1;
  color: #1d2420;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #efe9e2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.image-frame {
  background: #d9d0c6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card .card-image {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background: #d9d0c6;
}

.price {
  font-weight: 700;
  color: #244c3a;
}

.highlight {
  background: #fff3df;
  padding: 18px;
  border-radius: 16px;
}

.form-section {
  background: #1d2420;
  color: #f7f4f0;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.form-copy,
.form-panel {
  flex: 1 1 320px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c5b7a7;
  font-family: inherit;
  font-size: 15px;
}

.is-hidden {
  display: none;
}

.footer {
  background: #111613;
  color: #d8d2c7;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: #b6afa3;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #244c3a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list-block li {
  margin-left: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.notice {
  font-size: 14px;
  color: #5e655f;
}
