* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1c1a;
  background: #f7f2eb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 0;
  gap: 24px;
}

.nav-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #8e6f53;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 60px;
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #6d4c3d;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1c1a;
  background: #1f1c1a;
  color: #f7f2eb;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1f1c1a;
}

.button:hover {
  transform: translateY(-2px);
}

.magazine-section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.magazine-section.alt {
  background: #fffaf3;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.magazine-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  padding: 20px;
  background: #f1e6db;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-card {
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(38, 28, 18, 0.08);
}

.feature-card .eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #8e6f53;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-highlight .text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-highlight .visual {
  flex: 1 1 260px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  border-left: 4px solid #8e6f53;
  padding-left: 18px;
  margin: 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3e2a22;
}

.form-shell {
  background: #1f1c1a;
  color: #fdf5eb;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  margin-top: 6px;
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.inline-cta {
  color: #8e6f53;
  border-bottom: 2px solid #8e6f53;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #1f1c1a;
  color: #f7f2eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #8e6f53;
  color: #fffaf3;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(30, 20, 12, 0.24);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fffaf3;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(30, 20, 12, 0.2);
  width: min(340px, 90vw);
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f1c1a;
  background: #1f1c1a;
  color: #fffaf3;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f1c1a;
}

.page-header {
  padding: 36px 6vw 18px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 28px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1 1 55%;
  }

  .hero-visual {
    flex: 1 1 45%;
  }
}
