* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b16;
  --muted: #6f665e;
  --sand: #f4efe8;
  --clay: #d9c7b5;
  --olive: #5a6a4d;
  --accent: #a75c3c;
  --paper: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 6%;
  background: var(--sand);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 32px;
  padding: 52px 6% 70px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 240px;
  height: 240px;
  background: var(--clay);
  border-radius: 50%;
  opacity: 0.4;
}

.hero-text {
  flex: 1 1 52%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.4rem;
  max-width: 520px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  background: var(--accent);
  color: var(--paper);
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1 1 48%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.image-frame {
  background: var(--clay);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .image-frame {
  width: 380px;
  height: 440px;
  transform: rotate(-2deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.textile-background {
  background-color: #42372f;
  color: var(--paper);
  background-image: url("https://images.pexels.com/photos/16912480/pexels-photo-16912480.jpeg");
  background-size: cover;
  background-position: center;
}

.textile-background .section-text,
.textile-background a {
  color: #f2e9df;
}

.section-header {
  max-width: 540px;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-text {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: row;
  gap: 18px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.service-card .image-frame {
  width: 140px;
  height: 120px;
  flex: 0 0 auto;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--olive);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid var(--clay);
  padding-left: 18px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--clay);
  font-size: 0.85rem;
  width: fit-content;
}

.form-wrap {
  background: var(--paper);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.quote-block {
  background: var(--clay);
  padding: 22px;
  border-radius: 18px;
  max-width: 520px;
}

.quote-block span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  background: var(--sand);
  padding: 36px 6% 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta button {
  background: var(--paper);
  color: var(--accent);
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1 1 auto;
  padding: 8px 10px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept-btn {
  background: var(--olive);
  color: var(--paper);
}

.reject-btn {
  background: var(--clay);
  color: var(--ink);
}

.notice {
  background: #f7f2ed;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-card {
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--clay);
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-media .image-frame {
    width: 100%;
    height: 320px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
