@import url("https://fonts.googleapis.com/css2?family=Literata:wght@300;400;600;700&family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1d1a17;
  --muted: #5c5c5c;
  --sand: #f7f1ea;
  --clay: #e6d8c9;
  --stone: #f2f2f4;
  --ocean: #245b6a;
  --sun: #f0b35d;
  --accent: #c26645;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(29, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 6vw 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Literata", serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 6vw 80px;
  background: linear-gradient(120deg, rgba(247, 241, 234, 0.9), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-family: "Literata", serif;
  font-size: clamp(34px, 6vw, 64px);
  margin: 0;
}

.hero p {
  max-width: 580px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button.primary {
  background: var(--ocean);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: var(--ocean);
  color: var(--ocean);
}

.button.ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.tight {
  padding: 50px 6vw;
}

.section.sand {
  background: var(--sand);
}

.section.clay {
  background: var(--clay);
}

.section.stone {
  background: var(--stone);
}

.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;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.callout {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
}

.highlight {
  font-family: "Literata", serif;
  font-size: 26px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-tag {
  font-size: 22px;
  font-weight: 700;
  color: var(--ocean);
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c2bb;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--sun);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 120px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 30;
}

.floating-note {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.mini-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal h1 {
  font-family: "Literata", serif;
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    max-width: 580px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }
}
