* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e2329;
  background: #f6f2ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #1e2329;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 20;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid #e2d9d2;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #6b5b52;
  background: #f2ece7;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover {
  text-decoration: underline;
}

.sidebar-cta {
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1e2329;
  background: #1e2329;
  color: #ffffff;
}

.button:hover {
  background: #343b45;
}

.button.ghost {
  background: transparent;
  color: #1e2329;
}

.button.ghost:hover {
  background: #f0e9e3;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.light {
  background: #ffffff;
}

.section.sand {
  background: #f1e8e1;
}

.section.dark {
  background: #2a2f36;
  color: #fdf7f2;
}

.hero {
  position: relative;
  color: #ffffff;
  min-height: 56vh;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  font-size: 14px;
  color: #f6efe9;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 260px;
}

.image-frame {
  background: #d9cfc6;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-taupe {
  background: #d0c3b8;
}

.frame-olive {
  background: #c7c2b4;
}

.frame-rose {
  background: #dfcfc7;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(30, 35, 41, 0.08);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: #4b4038;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-item {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e0d4cc;
}

.price-item h4 {
  margin: 0 0 6px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.inline-link {
  text-decoration: underline;
}

.quote {
  font-style: italic;
  background: #f8f1ec;
  border-left: 4px solid #a88f7d;
  padding: 14px 18px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e2d8cf;
  max-width: 520px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc2b8;
  font-size: 14px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #a86b49;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta:hover {
  background: #8f5a3c;
}

.site-footer {
  background: #1e2329;
  color: #f7f1ec;
  padding: 36px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d8cfc7;
  padding: 16px 18px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  cursor: pointer;
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.section-bg > * {
  position: relative;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f0e5dd;
  color: #5f5148;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.simple-hero {
  padding: 48px 8vw 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.legal-content {
  padding: 32px 8vw 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h2 {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e2d9d2;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
