:root {
  color-scheme: light;
  --ink: #1d1a19;
  --muted: #6f6a68;
  --accent: #8b3456;
  --accent-dark: #6d2743;
  --soft: #f7f1f0;
  --sand: #efe7e3;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.rounded-image {
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

.topbar {
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

.topbar .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  background: linear-gradient(120deg, rgba(247, 241, 240, 0.95), rgba(255, 255, 255, 0.75)),
    url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&w=1400&q=80") center/cover;
  padding: 72px 0 96px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
}

.hero .hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button.light {
  background: var(--sand);
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.highlight {
  background: var(--soft);
  padding: 56px 0;
}

.editorial {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}

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

.story-card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.ripple {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0;
}

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

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: var(--radius);
}

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

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing {
  background: var(--sand);
  padding: 64px 0;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .pricing-grid {
    flex-direction: row;
  }
}

.price-card {
  flex: 1;
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.form-section {
  padding: 64px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc9;
  font-size: 1rem;
}

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

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

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 4;
}

.sticky-cta .button {
  box-shadow: var(--shadow);
}

.footer {
  background: #1b1817;
  color: var(--white);
  padding: 48px 0;
}

.footer a {
  color: var(--white);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

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

.hidden {
  display: none;
}

.side-note {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
}

.hero-cta-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-stack .card {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: #2b2524;
  color: var(--white);
  padding: 20px;
  border-radius: 14px;
}

.section-block {
  padding: 64px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

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

.gallery img {
  flex: 1 1 180px;
  border-radius: 16px;
  min-height: 180px;
  object-fit: cover;
}
