* {
  box-sizing: border-box;
}

:root {
  --ink: #2c2320;
  --muted: #6f5e55;
  --accent: #b45a6b;
  --accent-dark: #8d3e4f;
  --cream: #f7f0ec;
  --sand: #f1e7e0;
  --rose: #f5e4e9;
  --sage: #e4ece6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--rose);
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero {
  padding: 80px 6vw 60px;
  color: #fff;
  background-image: url("https://images.pexels.com/photos/5650039/pexels-photo-5650039.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #3a2a2f;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 27, 30, 0.58);
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
}

.section {
  padding: 70px 6vw;
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.section p {
  margin: 0 0 18px;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.img-frame {
  background: var(--sand);
  padding: 12px;
  border-radius: 18px;
}

img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(47, 32, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card button {
  align-self: flex-start;
}

.panel {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
}

.quote {
  font-style: italic;
  color: var(--ink);
}

.strip {
  background-image: url("https://images.pexels.com/photos/11935646/pexels-photo-11935646.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #2a1f22;
  color: #fff;
  position: relative;
}

.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 17, 20, 0.6);
}

.strip .section-inner {
  position: relative;
}

.pricing {
  background: var(--sage);
}

.price-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-section {
  background: var(--sand);
  border-radius: 22px;
  padding: 32px;
}

.form-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 220px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4c7c1;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  z-index: 2;
  margin: 20px 0;
}

.sticky-cta a {
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
}

footer {
  padding: 40px 6vw 60px;
  background: #1f1516;
  color: #f6efec;
}

footer a {
  color: #f6efec;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.list {
  padding-left: 18px;
  margin: 0;
}

.list li {
  margin-bottom: 8px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}
