* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1b1a;
  background: #f7f4f1;
  line-height: 1.6;
}

a {
  color: #2b5c6b;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.82rem;
  color: #6a4d3b;
  background: #f0e1d6;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #efe9e3;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 24px 6vw 64px;
}

.hero-visual {
  flex: 1 1 52%;
  min-height: 360px;
  border-radius: 32px;
  background-color: #cdbdb1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.35));
}

.hero-card {
  flex: 1 1 38%;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  align-self: center;
}

.hero-card h1 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.hero-card p {
  margin-top: 0;
}

.inline-link {
  font-weight: 600;
}

.section {
  padding: 56px 6vw;
}

.section-muted {
  background: #efe9e3;
}

.section-sand {
  background: #f2ede7;
}

.section-dark {
  background: #1f2b2f;
  color: #f5f3f0;
}

.section-dark a {
  color: #d7f3ff;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 48%;
}

.asym-visual {
  flex: 1 1 45%;
  background: #d7c7bc;
  border-radius: 28px;
  overflow: hidden;
}

.asym-visual img {
  width: 100%;
  height: 100%;
}

.floating-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  max-width: 560px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: #2b5c6b;
}

.highlight-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.highlight-bar .chip {
  background: #f0e1d6;
  color: #5c3f2e;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.service-choice {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-choice button {
  border: none;
  background: #2b5c6b;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

.form-card {
  flex: 1 1 320px;
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7beb7;
  font-size: 0.95rem;
  font-family: inherit;
}

.submit-btn {
  border: none;
  background: #1f2b2f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: rgba(245, 242, 237, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid #e0d6ce;
  padding: 16px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: #2b5c6b;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  padding: 32px 6vw 48px;
  background: #1b1a18;
  color: #e7e1db;
}

.footer a {
  color: #f5d7bc;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-card {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}

.cookie-banner button {
  border: none;
  background: #2b5c6b;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner .secondary {
  background: #6a4d3b;
}

.page-title {
  margin-top: 0;
  font-size: 2rem;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.legal-block ul {
  padding-left: 20px;
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.image-frame {
  background: #d9cfc6;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?w=1400&q=80");
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .hero-card {
    order: -1;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
