*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1c1a;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: #f7f4f0;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cta-pill {
  padding: 10px 18px;
  border-radius: 999px;
  background: #1d1c1a;
  color: #f7f4f0;
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
  max-width: 520px;
}

.split .media {
  flex: 1 1 320px;
  position: relative;
}

.hero {
  background: #ede7df;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.hero .media img {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.accent {
  background: #1d1c1a;
  color: #f7f4f0;
}

.accent .cta-pill {
  background: #f7f4f0;
  color: #1d1c1a;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: #fdfbf7;
  border: 1px solid #e6dfd6;
}

.pricing-item strong {
  font-size: 1.05rem;
}

.price {
  margin-left: auto;
  font-weight: 700;
  color: #5b3a24;
}

.testimonial {
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2d9cf;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d1c7;
  font-size: 1rem;
  font-family: inherit;
}

.form-grid button {
  border: none;
  padding: 14px 18px;
  border-radius: 12px;
  background: #1d1c1a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.split-photo {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80") center/cover;
  color: #fff;
}

.split-photo .panel {
  flex: 1 1 320px;
  background: rgba(29, 28, 26, 0.78);
  padding: 30px;
  border-radius: 16px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery img {
  flex: 1 1 180px;
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.footer {
  padding: 40px 6vw;
  background: #1d1c1a;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #5b3a24;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1d1c1a;
  color: #fff;
}

.cookie-actions .reject {
  background: #e6dfd6;
  color: #1d1c1a;
}

.info-block {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .split {
    flex-direction: column;
  }
}
