/* Base */
:root {
  --bg: #f7f4f1;
  --text: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #2f6a4a;
  --accent-dark: #214c35;
  --cream: #fff8f1;
  --rose: #f2e2e2;
  --sage: #e1ebe3;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e3dd;
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: var(--sage);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text);
}

.hero {
  margin-top: 28px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

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

.split > div {
  flex: 1 1 0;
}

.split-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-image,
.section-image,
.card-image {
  border-radius: 18px;
  background-color: #e8e3dd;
  overflow: hidden;
}

.hero-image img,
.section-image img,
.card-image img {
  width: 100%;
  height: 100%;
}

.hero-image {
  height: 380px;
}

.section-image {
  height: 320px;
}

.card-image {
  height: 180px;
}

.section {
  margin-top: 56px;
}

.section-intro {
  max-width: 520px;
  margin-bottom: 24px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: var(--rose);
  color: #5b3838;
  padding: 6px 10px;
  border-radius: 999px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:active {
  transform: translateY(1px);
}

.inline-cta {
  font-weight: 600;
}

.band {
  background: var(--cream);
  border-radius: 24px;
  padding: 36px;
}

.band.flower-back {
  background-color: #efe7df;
  background-image: url('https://images.unsplash.com/photo-1508747703725-719777637510?w=1400&q=80');
  background-size: cover;
  background-position: center;
  color: #2a2a2a;
}

.band.flower-back .split-card {
  background: rgba(255, 255, 255, 0.9);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 12px;
}

.process-step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-area {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-buttons button.active {
  background: var(--accent-dark);
}

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

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d0c8;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid #e2d9d0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 14px;
  color: #4b4b4b;
  background: #f1efe9;
  padding: 14px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

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

.legal-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-image,
  .section-image {
    height: 240px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
