:root {
  --bg: #f8f3ee;
  --bg-soft: #f3e7dc;
  --text: #2c2623;
  --muted: #6f6159;
  --accent: #f3b69a;
  --accent-deep: #e39a74;
  --card: #fffaf6;
  --shadow: 0 30px 60px rgba(44, 38, 35, 0.14);
  --radius: 28px;
}

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

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #ffffff 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at bottom, rgba(243, 182, 154, 0.25), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0 2px, transparent 2px 6px),
    var(--bg);
  line-height: 1.6;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
}

section,
header,
footer {
  padding: 64px 8vw;
}

.hero {
  min-height: 100vh;
  display: grid;
  gap: 40px;
  place-items: center;
}

.site-variants {
  width: min(900px, 100%);
  text-align: center;
  display: grid;
  gap: 16px;
}

.site-variants p {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-variants-actions {
  display: grid;
  gap: 12px;
}

.poster {
  width: min(560px, 100%);
  background: linear-gradient(180deg, #ffffff, #f6ece3);
  border-radius: 36px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.poster::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(44, 38, 35, 0.08);
  pointer-events: none;
}

.poster-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ffffff, #f5e4d8 55%, #e7c7b6 100%);
  margin: 0 auto 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.poster-handle {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 24px;
}

.poster h1 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-bottom: 18px;
}

.poster-divider {
  width: 140px;
  height: 2px;
  background: rgba(44, 38, 35, 0.18);
  margin: 0 auto 18px;
}

.poster-subtitle {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.poster-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin-bottom: 28px;
}

.poster-buttons {
  display: grid;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(44, 38, 35, 0.2);
}

.btn-primary {
  background: var(--accent);
  color: #3a2b22;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(44, 38, 35, 0.2);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(44, 38, 35, 0.25);
  color: var(--text);
}

.btn-pill {
  background: #f4b99e;
  color: #3a2b22;
  font-weight: 600;
}

.section {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 12px;
}

.grid {
  display: grid;
  gap: 24px;
}

.services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(44, 38, 35, 0.12);
}

.card h3 {
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(243, 182, 154, 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #fff5ed 0%, #f4e5da 100%);
  border-radius: var(--radius);
  margin: 0 8vw;
  padding: 48px;
}

.steps {
  list-style: none;
  display: grid;
  gap: 24px;
}

.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
}

.steps span {
  font-size: 18px;
  color: var(--accent-deep);
  font-weight: 700;
}

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

.split-highlight {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(246, 183, 148, 0.12);
  display: grid;
  gap: 6px;
}

.pricing {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price-card {
  background: var(--card);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(44, 38, 35, 0.12);
  display: grid;
  gap: 16px;
}

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

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.featured {
  border: 2px solid rgba(243, 182, 154, 0.6);
}

.cta {
  background: var(--accent);
  color: #3a2b22;
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.cta .btn-ghost {
  border-color: rgba(58, 43, 34, 0.35);
  color: #3a2b22;
}

.footer {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: #f2e6dc;
}

@media (max-width: 720px) {
  .split {
    margin: 0;
    border-radius: 0;
  }

  .cta {
    padding: 36px;
  }

  .poster {
    padding: 40px 24px;
  }
}
