* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1b;
  background: #f7f3ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  overflow: hidden;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  background: #f2ece5;
  border-bottom: 1px solid #e0d6cb;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 13px;
  font-weight: 500;
  color: #6a5e52;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px dashed #9e8d7c;
  border-radius: 999px;
  color: #7a6c60;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: #1b1a18;
  color: #fff6ee;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1534177616072-ef7dc120449d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px 28px 60px 80px;
  max-width: 620px;
}

.hero-card {
  background: rgba(20, 16, 12, 0.82);
  padding: 32px 30px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 8px;
}

.hero p {
  margin: 0;
  color: #f8ede1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #e66b2f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(230, 107, 47, 0.25);
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost-button {
  background: transparent;
  border: 1px solid #f1d5c1;
  color: #f8ede1;
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: #201c18;
  color: #f8ede1;
}

.section-bg {
  position: relative;
  color: #1f1c19;
  background: #efe7df;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1761178383875-2d3e4ad3ae4d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.section-bg .shell {
  position: relative;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.flex-row.reverse {
  flex-direction: row-reverse;
}

.flex-col {
  flex: 1 1 280px;
}

.image-frame {
  background: #d8c9bb;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

.overlap-card {
  margin-top: -50px;
  background: #fffaf6;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(40, 31, 22, 0.18);
  max-width: 520px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 12px;
  background: #f0dccc;
  border-radius: 999px;
  font-size: 13px;
  color: #684f3f;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff9f2;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 22px rgba(50, 40, 30, 0.12);
}

.card h3 {
  margin: 0;
  font-size: 20px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #f5ede5;
  border-radius: 14px;
}

.pricing-item span {
  font-weight: 600;
}

.inline-cta {
  color: #e66b2f;
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #1d1916;
  color: #f7ede5;
  border-radius: 24px;
  padding: 28px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  color: #f1dfd0;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #40372f;
  background: #2b231d;
  color: #f7ede5;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 18px;
  background: #fff6ee;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(39, 29, 20, 0.12);
  max-width: 220px;
}

.footer {
  padding: 50px 0 90px;
  background: #1a1613;
  color: #f3e7db;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff8f1;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(26, 18, 12, 0.18);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.small-note {
  font-size: 13px;
  color: #786a5e;
}

.page-hero {
  padding: 60px 0 40px;
  background: #f0e6db;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.contact-panel {
  background: #fff9f2;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-content {
  padding: 40px 0 70px;
}

.legal-content h2 {
  margin-top: 28px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff9f2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card span {
  font-weight: 700;
  color: #9a4b24;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 50px 28px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
