*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --bg-alt: #fff7f2;
  --ink: #1f1b17;
  --muted: #5e564f;
  --accent: #c26b5a;
  --accent-2: #7a5f4a;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(31, 27, 23, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.top-bar {
  background: #efe7de;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar .ad-label {
  font-weight: 600;
}

.nav {
  padding: 1.5rem 2rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.nav .brand {
  font-size: 1.5rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  padding: 2rem 2rem 4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero-text p {
  color: var(--muted);
}

.hero-card {
  flex: 1 1 320px;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  transform: translateY(20px);
}

.hero-card .image-wrap {
  background: #eadfd4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: #e8d7ca;
  color: var(--ink);
}

.button:focus,
.button:hover {
  transform: translateY(-2px);
  background: #b55e4e;
}

.section {
  padding: 4rem 2rem;
}

.section.alt {
  background: var(--bg-alt);
}

.bg-showcase {
  background-image: url("https://images.pexels.com/photos/24552012/pexels-photo-24552012.jpeg");
  background-size: cover;
  background-position: center;
  color: #fef7f1;
}

.bg-showcase .section-title,
.bg-showcase p {
  color: #fef7f1;
}

.bg-showcase .overlay {
  background: rgba(31, 27, 23, 0.55);
  padding: 2.5rem;
  border-radius: 20px;
}

.section .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.story-grid .text-block {
  flex: 1 1 320px;
  max-width: 520px;
}

.story-grid .visual-block {
  flex: 1 1 260px;
  position: relative;
  padding-left: 2rem;
}

.story-grid .visual-block .image-wrap {
  background: #e8d2c8;
  border-radius: 16px;
  overflow: hidden;
}

.floating-note {
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 220px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}

.card .image-wrap {
  background: #e8e0d6;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.75rem;
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.timeline-step {
  flex: 1 1 240px;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-box {
  flex: 1 1 320px;
  background: #fff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-box label {
  display: block;
  font-weight: 600;
  margin-top: 1rem;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #d8cfc7;
  margin-top: 0.4rem;
  font-size: 1rem;
}

.form-box button {
  margin-top: 1.4rem;
  width: 100%;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 20;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  background: #1f1b17;
  color: #f8efe6;
  padding: 3rem 2rem;
}

.footer a {
  color: #f8efe6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #f1e7dc;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-actions .button {
  flex: 1 1 auto;
  padding: 0.6rem 0.9rem;
}

.page-hero {
  padding: 3rem 2rem 2rem;
}

.page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.page-content {
  padding: 2rem;
  max-width: 860px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.split-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.split-info .info-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
  }
}
