* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1b16;
  --accent: #d17a22;
  --accent-dark: #b4631d;
  --sand: #f6efe8;
  --sage: #e7efe6;
  --night: #2d2a26;
  --cream: #fffaf5;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  padding: 20px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-bottom: 1px solid #eee1d7;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 0.85rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-image {
  flex: 1 1 320px;
  background: #e7e1da;
  padding: 12px;
  border-radius: 18px;
}

.split-image img {
  width: 100%;
  height: 360px;
  border-radius: 14px;
}

.hero {
  background: var(--sand);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
  color: var(--accent-dark);
}

.stats-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 30px 6vw;
  background: var(--sage);
  justify-content: space-between;
}

.stat-card {
  flex: 1 1 200px;
  background: white;
  padding: 18px;
  border-radius: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 40px 6vw;
}

.service-stack {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight-band {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 6vw;
  background: #f1e9df;
  align-items: center;
}

.highlight-text {
  flex: 1 1 280px;
}

.highlight-image {
  flex: 1 1 280px;
  background: #e4dacd;
  padding: 10px;
  border-radius: 18px;
}

.highlight-image img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

.form-section {
  padding: 60px 6vw;
  background: var(--night);
  color: white;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-options label {
  flex: 1 1 200px;
  background: #3d3933;
  padding: 14px;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid transparent;
}

.service-options input:checked + span {
  color: var(--accent);
  font-weight: 700;
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  flex: 1 1 220px;
  padding: 12px;
  border-radius: 10px;
  border: none;
}

.form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--sand);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-page {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6vw;
}

.contact-card {
  flex: 1 1 240px;
  background: white;
  padding: 20px;
  border-radius: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: white;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.section-divider {
  height: 4px;
  width: 60px;
  background: var(--accent);
}

.image-panel {
  background: #eadfd4;
  border-radius: 16px;
  padding: 12px;
}

.image-panel img {
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

.page-title {
  margin: 0;
  font-size: 2.2rem;
}

.note {
  font-size: 0.95rem;
  opacity: 0.85;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.background-panel {
  background: #efe7df;
  padding: 24px;
  border-radius: 16px;
}

.testimonial {
  font-style: italic;
  background: white;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 760px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
