* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1a1a;
  --muted: #5c4f4f;
  --rose: #d7b2b2;
  --dust: #f7f1f0;
  --clay: #b98f88;
  --sage: #7f8f8a;
  --cream: #fff9f7;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4%;
  background: var(--cream);
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.nav-disclosure {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--rose);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 0 4%;
}

.hero-text {
  flex: 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-visual {
  flex: 1;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background: var(--dust);
  border-radius: 28px;
}

.hero-visual img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  left: -12%;
  bottom: 12%;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 220px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.ghost {
  background: #fff;
  border-color: var(--rose);
  color: var(--ink);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-panel {
  background: #fff;
  padding: 34px;
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  position: relative;
  left: -40px;
}

.offset-panel.right {
  left: 40px;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sage);
}

.story {
  background: var(--dust);
  padding: 56px 0;
}

.story-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.story-card img {
  border-radius: 16px;
  width: 180px;
  height: 140px;
  background-color: var(--rose);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 12px;
  border-left: 2px solid var(--rose);
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trust {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.trust-badge {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
}

.trust img {
  border-radius: 18px;
  width: 240px;
  height: 260px;
  background-color: var(--clay);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
}

.service-card img {
  border-radius: 14px;
  width: 100%;
  height: 160px;
  background-color: var(--rose);
}

.service-card .price {
  font-weight: 700;
  color: var(--clay);
}

.testimonial-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--rose);
  border-radius: 22px;
  padding: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-wrap {
  background: var(--dust);
  padding: 48px 0;
}

.form-box {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-row input,
.form-row select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9b3b3;
  background: #fff;
}

.inline-cta {
  color: var(--clay);
  text-decoration: underline;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.footer {
  background: #1f1a1a;
  color: #fff;
  padding: 40px 4% 52px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.footer a {
  color: #fff;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--rose);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--dust);
  padding: 40px 0 32px;
}

.page-hero .hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
}

.page-hero img {
  width: 320px;
  height: 220px;
  border-radius: 20px;
  background-color: var(--rose);
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.legal-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--rose);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .page-hero .hero-inner,
  .trust {
    flex-direction: column;
  }

  .hero-card {
    position: static;
  }

  .offset-panel,
  .offset-panel.right {
    left: 0;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
