:root {
  --ink: #1d1a1a;
  --muted: #5d5858;
  --soft: #f6f1ee;
  --accent: #8a4e62;
  --accent-dark: #6f3e4e;
  --warm: #efe6e1;
  --paper: #ffffff;
  --shadow: rgba(20, 14, 14, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: var(--paper);
  border-bottom: 1px solid #efe6e1;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 13px;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #2b2222;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/36833974/pexels-photo-36833974.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.82;
}

.hero-content {
  position: relative;
  padding: 80px 6vw 60px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content p {
  color: #f7f1ef;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border-color: #fff;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--soft);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > * {
  flex: 1 1 280px;
}

.image-frame {
  background: #e9ded9;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 18px 40px var(--shadow);
}

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

.story-grid strong {
  color: var(--accent-dark);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .image-frame {
  min-height: 180px;
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #f0e5e1;
}

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

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px var(--shadow);
}

.pricing-item span {
  font-weight: 600;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(138, 78, 98, 0.25);
}

.testimonial {
  background: #fff;
  padding: 20px 22px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-weight: 600;
  color: var(--muted);
}

.form-wrap select,
.form-wrap input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e4d7d1;
  font-size: 15px;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw;
  background: #1f1a1a;
  color: #f6f0ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f6f0ee;
}

.footer small {
  color: #cfc0ba;
}

.legal-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.banner button {
  cursor: pointer;
  border: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner-actions .btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.page-header {
  padding: 50px 6vw 30px;
  background: var(--soft);
}

.page-content {
  padding: 40px 6vw 70px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1e7e2;
  color: var(--accent-dark);
  font-size: 13px;
}

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

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 18px var(--shadow);
}

@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sticky-cta {
    align-self: stretch;
  }
}
