* {
  box-sizing: border-box;
}

:root {
  --sand: #f5f1ea;
  --stone: #e6ded3;
  --charcoal: #2c2a27;
  --sage: #4f6f63;
  --clay: #c89b7b;
  --sunset: #f2c8a2;
  --shadow: rgba(25, 23, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 12px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--stone);
}

.ad-label {
  font-size: 0.85rem;
  background: var(--charcoal);
  color: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--stone);
  margin: 28px 0 56px;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-content {
  position: relative;
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero .hero-card {
  position: absolute;
  right: 50px;
  bottom: -30px;
  width: min(340px, 80%);
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero .hero-card strong {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #3c594f;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--sage);
  color: #fff;
}

.asym-block {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin: 70px 0;
  flex-wrap: wrap;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 360px;
  padding: 12px 10px;
}

.asym-media {
  flex: 1 1 320px;
  position: relative;
  padding: 18px;
}

.media-frame {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--sunset);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: var(--stone);
}

.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--sage);
}

.split-band {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin: 60px 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.split-band .band-text {
  flex: 1 1 50%;
  padding: 28px;
}

.split-band .band-media {
  flex: 1 1 50%;
  position: relative;
  background: var(--stone);
}

.split-band .band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section {
  background: #fff;
  padding: 38px;
  border-radius: 24px;
  box-shadow: 0 16px 28px var(--shadow);
  margin-bottom: 80px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 220px;
}

.notice {
  font-size: 0.92rem;
  color: #5a564f;
}

.footer {
  background: #23211f;
  color: #efe9df;
  padding: 40px 0 60px;
}

.footer .footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer a {
  color: inherit;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--clay);
  color: #2d221b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px var(--shadow);
  z-index: 20;
  transition: transform 0.2s ease;
}

.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 340px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--sage);
  color: #fff;
}

.cookie-reject {
  background: var(--stone);
  color: var(--charcoal);
}

.page-hero {
  margin: 32px 0 50px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .hero-text {
  flex: 1 1 340px;
}

.page-hero .hero-media {
  flex: 1 1 320px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section {
  background: #fff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 24px var(--shadow);
  margin-bottom: 26px;
}

@media (max-width: 880px) {
  .hero .hero-card {
    position: static;
    margin: 24px 0 10px;
  }

  .hero-content {
    padding: 50px 28px;
  }

  .split-band {
    flex-direction: column;
  }
}
