@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --bg: #f7f3ee;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #2b6a5f;
  --accent-dark: #214c45;
  --sand: #efe6db;
  --clay: #d9c8b4;
  --rose: #f3e8e1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 24px 7vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 20px;
}

.nav a:hover,
.btn:hover,
.ghost-btn:hover {
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 7vw 72px;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 380px;
  background-color: var(--clay);
  display: flex;
  align-items: flex-end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 14, 14, 0.55), rgba(14, 14, 14, 0));
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: #fff;
  max-width: 520px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin: 0 0 12px;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: #f4f4f4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.story-section {
  padding: 56px 7vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.story-block.reverse {
  flex-direction: row-reverse;
}

.story-text {
  flex: 1 1 320px;
}

.story-image {
  flex: 1 1 300px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--sand);
  min-height: 260px;
}

.story-image img {
  width: 100%;
  height: 100%;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.highlight {
  background: var(--rose);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.metric-card {
  flex: 1 1 200px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.metric-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e7e0d7;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2d9ce;
}

.price-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e8e0d6;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc6b9;
  font-family: inherit;
}

.cta-band {
  padding: 48px 7vw;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 32px;
  margin: 0 7vw 56px;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--clay);
  color: #fff;
}

.bg-section .story-text {
  background: rgba(24, 24, 24, 0.6);
  padding: 24px;
  border-radius: 20px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 36px 7vw 56px;
  background: #1d1d1d;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a:hover {
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 13px;
  color: #d6d6d6;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  padding: 40px 7vw 20px;
}

.page-content {
  padding: 0 7vw 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.inline-image {
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--clay);
}

.inline-image img {
  width: 100%;
  height: 100%;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .topbar-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 320px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
