* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #6a6a6a;
  --bg: #f8f5f1;
  --accent: #2f6f61;
  --accent-dark: #214f45;
  --paper: #ffffff;
  --sand: #efe6dc;
  --clay: #d6c6b5;
  --sun: #f2c16b;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 10px;
  background: transparent;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom: 2px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 6vw;
  padding: 30px 6vw 10px;
  align-items: center;
}

.hero-card {
  flex: 1;
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(20px);
}

.hero-card h1 {
  margin-top: 0;
  font-size: 2.3rem;
}

.hero-media {
  flex: 1;
  position: relative;
}

.hero-media .img-frame {
  background: var(--clay);
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: var(--sand);
  color: var(--ink);
}

.btn-link {
  background: transparent;
  color: var(--accent);
  padding: 0;
  border-radius: 0;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asymmetric {
  background: var(--paper);
  margin: 0 4vw;
  border-radius: 28px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
}

.section.bg-ritual {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.bg-ritual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  border-radius: 28px;
}

.section.bg-ritual > * {
  position: relative;
  z-index: 1;
}

.split-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-row .col {
  flex: 1;
}

.img-card {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--paper);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-frame {
  background: var(--clay);
  border-radius: 14px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--sand);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.highlight-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--sun);
  padding: 20px;
  border-radius: 20px;
  align-items: center;
  justify-content: space-between;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  background: var(--paper);
  padding: 16px;
  border-radius: 16px;
  min-width: 200px;
  flex: 1;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 240px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
  margin-top: 0;
}

.form-block {
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  padding: 10px 12px;
  border-radius: 12px;
}

.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw 50px;
  background: #1f1f1f;
  color: #e9e9e9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e9e9e9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  font-size: 0.85rem;
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: #1c1c1c;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-header {
  padding: 40px 6vw 20px;
}

.content-narrow {
  max-width: 860px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1;
  min-width: 240px;
  background: var(--paper);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split-row {
    flex-direction: column;
  }

  .hero-media img {
    height: 280px;
  }

  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
