* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1a17;
  --earth: #f2e7d8;
  --clay: #d9b89a;
  --dust: #faf6f0;
  --berry: #8a3f4b;
  --sage: #6e7b63;
  --gold: #b88a2f;
  --shadow: rgba(31, 26, 23, 0.15);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--dust);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  background: #fff;
  border-bottom: 1px solid #eee3d7;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--berry);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--berry);
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(242, 231, 216, 0.9)),
    url("img/hero-canvas.svg");
  background-size: cover;
  background-position: center;
  padding: 56px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}

.hero p {
  max-width: 560px;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--berry);
  color: #fff;
}

.btn-ghost {
  border-color: var(--berry);
  color: var(--berry);
  background: transparent;
}

.btn-light {
  border-color: #f7f1ea;
  color: #f7f1ea;
}

.hero-visual {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-visual .tile {
  flex: 1 1 160px;
  min-height: 140px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 52px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: var(--ink);
  color: #f7f1ea;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--berry);
}

.story-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-row .note {
  padding: 20px;
  background: var(--earth);
  border-radius: 18px;
}

.story-row .note strong {
  display: block;
  font-size: 1.1rem;
}

.split-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-stack img {
  border-radius: 18px;
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--dust);
  border: 1px solid #eadfd2;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 18px var(--shadow);
}

.reveal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: #fff7ea;
  border: 1px solid #f0d8bd;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee1d2;
}

.price {
  font-weight: 700;
  color: var(--berry);
}

.urgency {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #f4e3df;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 22px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dbcbb8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  color: var(--berry);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  z-index: 5;
}

.sticky-cta .btn {
  background: var(--gold);
  color: #1b140f;
}

.footer {
  background: #fff;
  padding: 32px 20px 40px;
  border-top: 1px solid #efe4d7;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.layered {
  background: linear-gradient(180deg, #fff 0%, #fdf7ee 100%);
  border-top: 1px solid #f2e4d3;
  border-bottom: 1px solid #f2e4d3;
}

.page-header {
  padding: 40px 20px 32px;
  background: var(--earth);
}

.simple-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 20px;
}

.legal h2 {
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
}

@media (min-width: 768px) {
  .top-nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    padding: 80px 60px 90px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-visual {
    flex-wrap: nowrap;
  }

  .story-row {
    flex-direction: row;
  }

  .split-stack {
    flex-direction: row;
    align-items: center;
  }

  .insight-grid {
    flex-direction: row;
  }

  .insight-card {
    flex: 1 1 0;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 220px;
  }
}
