*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #9a5468;
  --accent-dark: #7a3f52;
  --soft: #f6efef;
  --soft-2: #f2f6f3;
  --soft-3: #f5f0e9;
  --line: #e6dede;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-3);
  border: 1px solid var(--line);
}

.hero {
  padding: 32px 6vw 72px;
}

section {
  padding: 72px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 360px;
  min-width: 280px;
}

.split .media {
  flex: 1 1 360px;
  min-width: 280px;
}

.image-frame {
  background: #f1e4e6;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.image-frame.soft {
  background: #e9f2ee;
}

.image-frame.warm {
  background: #f4efe6;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.card .image-frame {
  min-height: 160px;
  border-radius: 14px;
  box-shadow: none;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.section-panel {
  background: var(--soft);
  border-radius: 26px;
  padding: 32px;
}

.panel-spaced {
  margin-top: 32px;
}

.bg-texture {
  background-image: url("https://images.pexels.com/photos/8298495/pexels-photo-8298495.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 26px;
}

.bg-texture .content {
  position: relative;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.form-wrap {
  background: var(--soft-2);
  border-radius: 24px;
  padding: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.footer {
  padding: 48px 6vw;
  background: #0f0f0f;
  color: #f2f2f2;
}

.footer a {
  color: #f2f2f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-block {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cfcfcf;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 30;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.simple-page {
  padding: 64px 6vw;
  max-width: 900px;
}

.simple-page h1 {
  margin-bottom: 20px;
}

.detail-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.detail-card {
  flex: 1 1 220px;
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
}

@media (max-width: 760px) {
  header {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
  }
}
