* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #2b2a28;
  --muted: #6b6b66;
  --surface: #f7f4f1;
  --accent: #b06a7a;
  --accent-dark: #8d4c5d;
  --soft: #f1e6e1;
  --sand: #efe9e4;
  --shadow: 0 18px 40px rgba(34, 28, 24, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffdfb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.img-cover {
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: #ffffff;
  border-bottom: 1px solid #efe6df;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #3a2b2b;
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-color: #e8dad2;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
  border-radius: 22px;
  overflow: hidden;
}

.hero.inest-hero {
  background-image: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 28, 24, 0.08), rgba(34, 28, 24, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 520px;
  color: #fff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.section {
  padding: 60px 0;
}

.section.sand {
  background: var(--sand);
  border-radius: 28px;
  padding: 60px 40px;
}

.section.soft {
  background: var(--soft);
  border-radius: 28px;
  padding: 60px 40px;
}

.section.backdrop {
  background-image: url("https://images.unsplash.com/photo-1595051665600-afd01ea7c446?w=1400&q=80");
  background-color: #8c6f6b;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  color: #fff;
  padding: 70px 40px;
}

.section.backdrop .card {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.section.backdrop p,
.section.backdrop .muted {
  color: #f3efe9;
}

.section.backdrop .card p,
.section.backdrop .card .muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e9ded7;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.section p {
  margin-bottom: 14px;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  background: #ede2dc;
}

.btn.is-selected {
  background: #5e323d;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-actions .btn {
  background: var(--accent-dark);
}

.form-section {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-steps > div {
  flex: 1 1 260px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7c9c1;
  font-size: 14px;
  background: #fff;
}

.form-row {
  margin-bottom: 14px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.error {
  color: #a23a3a;
  font-size: 13px;
  margin-top: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px;
}

.sticky-cta button {
  background: var(--accent-dark);
}

.site-footer {
  background: #201b18;
  color: #f5f1ee;
  padding: 40px 24px;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-grid div {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner[data-hidden="true"] {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.notice {
  background: #fff7f2;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 12px;
}

.image-frame {
  background: #e8dad2;
  border-radius: 16px;
  overflow: hidden;
}

.legal-page h1 {
  font-size: 32px;
  margin: 30px 0 16px;
}

.legal-page h2 {
  font-size: 22px;
  margin: 26px 0 10px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 10px;
}
