:root {
  --bg: #f7f3ef;
  --text: #1f1b17;
  --muted: #5c5147;
  --accent: #e06f3c;
  --accent-dark: #c2572b;
  --soft: #fff6ef;
  --deep: #2f2a24;
  --line: #e6dbcf;
  --shadow: 0 14px 35px rgba(31, 27, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  padding: 28px 6vw 12px;
  position: relative;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  padding: 24px 6vw 60px;
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 360px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-hero {
  background-color: #d9c7b8;
  background-image: url("https://images.pexels.com/photos/12955867/pexels-photo-12955867.jpeg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 27, 23, 0.65), rgba(31, 27, 23, 0.1));
}

.hero-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #fff;
}

.section.bg-atmos {
  background-color: #e9ded2;
  background-image: url("https://images.pexels.com/photos/6974742/pexels-photo-6974742.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-atmos a {
  color: #ffe1c4;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.spaced-top {
  margin-top: 30px;
}

.spaced-top-small {
  margin-top: 20px;
}

.spaced-top-large {
  margin-top: 28px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.quote {
  background: var(--soft);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 8px;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep);
}

.form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 50px 6vw 30px;
  background: var(--deep);
  color: #f2ece7;
}

footer a {
  color: #f7caa6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-note {
  margin-top: 20px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 20px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 8;
}

.sticky-cta button {
  padding: 8px 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

.image-frame {
  background: #efe4d8;
  border-radius: 22px;
  padding: 12px;
}

.image-frame img {
  border-radius: 18px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 780px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
