* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  width: 100%;
  overflow: hidden;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #efe9df;
}

.hero-left {
  flex: 1 1 55%;
  padding: 80px 7vw 60px 8vw;
  position: relative;
}

.hero-left::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #c9b8a7;
  opacity: 0.3;
  top: 20px;
  right: -80px;
  border-radius: 20px;
  transform: rotate(12deg);
}

.hero-right {
  flex: 1 1 45%;
  min-height: 420px;
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: absolute;
  top: 20px;
  left: 8vw;
  right: 8vw;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 18px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.tagline {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.intro {
  font-size: 1.05rem;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid #1b1b1b;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: #1b1b1b;
  color: #f7f4ef;
}

.btn.ghost {
  background: transparent;
}

.section {
  padding: 70px 8vw;
  position: relative;
}

.section.alt {
  background: #f1ece4;
}

.section.dark {
  background: #1f1f1f;
  color: #f7f4ef;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
}

.split .col {
  flex: 1 1 300px;
}

.offset-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.offset-card.dark {
  background: #2c2c2c;
  color: #f7f4ef;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0 0 12px 0;
}

.meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #d7d0c6;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery img {
  flex: 1 1 160px;
  border-radius: 16px;
  height: 180px;
  object-fit: cover;
}

.form-wrap {
  background: #ffffff;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #e0d8ce;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c0b5;
  font-size: 0.95rem;
  background: #fcfbf9;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

.footer {
  padding: 50px 8vw 70px;
  background: #121212;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b1b1b;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  max-width: 280px;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid #1b1b1b;
  font-size: 0.85rem;
  background: transparent;
  cursor: pointer;
}

.pill.primary {
  background: #1b1b1b;
  color: #f7f4ef;
}

.page-header {
  padding: 60px 8vw 30px;
  background: #efe9df;
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.basic-section {
  padding: 40px 8vw 70px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.note {
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 840px) {
  .hero-left {
    padding: 120px 8vw 50px;
  }

  .floating-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
