@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --ink: #1d1d1b;
  --muted: #5f5f5b;
  --accent: #b15e2f;
  --accent-dark: #7a3a1a;
  --shadow: 0 14px 30px rgba(28, 22, 13, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw 12px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(177, 94, 47, 0.12);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section--dark {
  background: #1f1a14;
  color: #fef7ef;
}

.section--dark a {
  color: #f6caa7;
}

.section--hero {
  padding-top: 40px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.hero-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--light {
  background: #f6caa7;
  color: #2e1b0e;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 2px solid rgba(177, 94, 47, 0.3);
}

.story-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.story-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}

.highlight {
  background: rgba(177, 94, 47, 0.12);
  padding: 18px 24px;
  border-radius: 18px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric {
  flex: 1 1 160px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.chooser {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chooser-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d1c6;
  font-family: inherit;
  font-size: 1rem;
}

.form-note {
  min-height: 22px;
  color: var(--accent-dark);
}

.footer {
  padding: 40px 6vw 60px;
  background: #0f0d0b;
  color: #f6f1ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 25;
  gap: 14px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
