.site {
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1d1d1f;
  background-color: #f7f4f1;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

a {
  color: #1b4d4f;
  text-decoration: none;
}

a:hover,
button:hover {
  text-decoration: underline;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #fde7d6;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero {
  padding: 80px 0 60px;
  color: #1b1b1b;
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  background: rgba(247, 244, 241, 0.85);
  padding: 32px;
  border-radius: 24px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1b4d4f;
  color: #fff;
}

.hero-card {
  flex: 1 1 260px;
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background-color: #fffaf6;
}

.section.dense {
  padding: 40px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1 1 320px;
}

.img-frame {
  background-color: #eadfd6;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
}

.quote {
  background-color: #fff1e7;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5d9cf;
}

.form-wrap {
  background-color: #f3efe9;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc4bb;
  font-size: 1rem;
}

button,
.button-link {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background-color: #1b4d4f;
  color: #fff;
  cursor: pointer;
  text-align: center;
}

.button-link.secondary {
  background-color: #b46b4d;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.texture {
  background-image: url("https://images.unsplash.com/photo-1463107971871-fbac9ddb920f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.texture .container {
  background: rgba(255, 250, 246, 0.9);
  padding: 26px;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1b4d4f;
  color: #fff;
  z-index: 20;
}

.footer {
  margin-top: auto;
  background-color: #1b1b1b;
  color: #fff;
  padding: 32px 0;
}

.footer a {
  color: #ffe8d7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.notice {
  background-color: #fef2e8;
  border-radius: 14px;
  padding: 12px;
}

.simple-hero {
  padding: 60px 0 40px;
  background-color: #f0e6dd;
}

.simple-hero h1 {
  margin: 0 0 10px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.muted {
  color: #5a4e45;
}

.no-phone {
  font-weight: 600;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
}

.hidden {
  display: none;
}
