@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --bg: #f7f5f2;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #0f6b5f;
  --accent-dark: #0b5147;
  --light: #ffffff;
  --sand: #ece5da;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(120deg, rgba(15, 107, 95, 0.15), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: var(--light);
  padding: 10vh 6vw 12vh;
}

.hero-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--light);
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
}

.section {
  padding: 8vh 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 16px;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.story-block p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  width: fit-content;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-badge {
  background: var(--accent);
  color: var(--light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-dark);
}

.badge {
  background: rgba(15, 107, 95, 0.12);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  width: fit-content;
}

.form-wrap {
  background: var(--light);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d0c8;
  font-family: inherit;
}

button {
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: var(--light);
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
  padding: 6vh 6vw;
  background: #111;
  color: #d8d8d8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #d8d8d8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 12vh 6vw 6vh;
  background: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: var(--light);
}

.page-hero .hero-inner {
  max-width: 560px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
  }
}
