* {
  box-sizing: border-box;
}

:root {
  --cream: #f6f1e8;
  --charcoal: #1e1b18;
  --sage: #6b7b6b;
  --terracotta: #c96b4b;
  --gold: #f2c777;
  --mist: #e3dfd7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 6vw 1.5rem;
}

.brand-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-row h1 {
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.brand-row p {
  margin: 0;
  max-width: 36rem;
  color: #3e3b36;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--terracotta);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 6vw 3rem;
  background: linear-gradient(145deg, #f9f4ec 0%, #f1e7d6 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  background: var(--terracotta);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}

.inline-link {
  color: var(--terracotta);
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.inline-link:hover {
  border-color: var(--terracotta);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3.5rem 6vw;
}

.section.alt {
  background: var(--mist);
}

.section .split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  background: white;
  padding: 1.8rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(30, 27, 24, 0.08);
}

.story-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: white;
  border-radius: 1rem;
}

.trust-item img {
  width: 56px;
  height: 56px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-item {
  background: white;
  padding: 1.4rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: white;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 40px rgba(30, 27, 24, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid #cfc6ba;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 1.5rem;
  align-self: flex-end;
  background: var(--charcoal);
  color: white;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem;
  border-left: 4px solid var(--gold);
  background: white;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 6vw;
  background: #1f1b18;
  color: #f9f4ee;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  background: white;
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(30, 27, 24, 0.15);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-header {
  padding: 2.5rem 6vw 1rem;
}

.page-header h2 {
  margin: 0;
  font-size: 2rem;
}

.content-block {
  padding: 2rem 6vw 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: white;
  padding: 1.8rem;
  border-radius: 1rem;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .section .split {
    flex-direction: row;
    align-items: center;
  }

  .trust-grid {
    flex-direction: row;
  }

  .pricing-table {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }
}
