@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1d1a18;
  --muted: #6d6460;
  --accent: #8b4d2b;
  --accent-light: #f6e9df;
  --surface: #fbf8f6;
  --deep: #161412;
  --highlight: #f2c39c;
  --shadow: 0 24px 60px rgba(29, 26, 24, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 6vw 72px;
  background: linear-gradient(120deg, rgba(246, 233, 223, 0.95), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 40px rgba(139, 77, 43, 0.25);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.section .kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--accent-light);
  min-width: 160px;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  border-radius: 22px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d1cc;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 32px 6vw 50px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #efe6df;
  color: var(--ink);
}

.page-header {
  padding: 56px 6vw 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-header h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.85rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .gallery {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .metrics {
    gap: 24px;
  }

  .form-columns {
    display: flex;
    gap: 18px;
  }

  .form-columns > div {
    flex: 1;
  }
}
