* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 26px 0 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a:hover {
  text-decoration: underline;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b4b4b;
  border: 1px solid #d5cec2;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fdf9f3;
}

.split-section {
  display: flex;
  gap: 34px;
  align-items: stretch;
  padding: 70px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 0;
}

.split-media {
  min-height: 320px;
}

.media-box {
  background-color: #ddd2c4;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.tagline {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #6a5a48;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 18px;
  color: #2f2a26;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-button,
.cta-secondary,
.service-button,
.pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  background: #1b1b1b;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.cta-secondary:hover,
.service-button:hover,
.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(27, 27, 27, 0.15);
}

.cta-secondary {
  background: #f0e6d8;
  color: #2f2a26;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.inline-link:hover {
  color: #6b553d;
}

.split-highlight {
  background: #fdf9f3;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.icon-card {
  flex: 1 1 140px;
  padding: 16px;
  background: #f1ebe2;
  border-radius: 14px;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #efe7dc;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.benefits-list span {
  background: #fff6ec;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e8dccd;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #efe7dc;
  padding: 20px;
}

.pricing-card p {
  margin-bottom: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #6b553d;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  color: #2f2a26;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc2;
  font-size: 1rem;
  background: #fffdf9;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.service-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  background: #6b553d;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #6b553d;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 12px 20px rgba(27, 27, 27, 0.2);
}

.sticky-cta:hover {
  transform: translateY(-2px);
}

.section-bg {
  background: #f1ebe2;
}

.bg-fabric {
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.footer {
  padding: 50px 0;
  background: #1b1b1b;
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fffdf9;
  border: 1px solid #d9cfc2;
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.cookie-accept {
  background: #1b1b1b;
  color: #fff;
}

.cookie-reject {
  background: #f0e6d8;
}

.page-hero {
  padding: 60px 0;
}

.page-hero .media-box {
  min-height: 260px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #efe7dc;
}

.legal-section {
  padding: 50px 0;
}

.legal-section ul {
  padding-left: 18px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
