* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --accent: #7b5c4b;
  --accent-dark: #5c4337;
  --light: #f6f3ef;
  --sand: #efe7df;
  --stone: #d9d0c6;
  --fog: #f1f0ed;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 12px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--fog);
  padding: 6px 10px;
  border-radius: 18px;
  display: inline-flex;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links,
.nav-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a,
.nav-cta a,
.nav-cta button {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 18px;
  background: var(--light);
  border: 1px solid var(--stone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta button {
  cursor: pointer;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 40px 6vw 70px;
  position: relative;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--light);
  padding: 32px;
  box-shadow: 0 24px 60px var(--shadow);
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 260px;
  background: var(--stone);
  padding: 10px;
  transform: translateY(24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: var(--sand);
  border: 1px solid var(--stone);
}

.btn-ghost {
  background: transparent;
  border: 1px dashed var(--accent);
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.offset-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow);
}

.offset-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.image-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  background: var(--light);
  padding: 40px;
  border-radius: 28px;
}

.split-band .text {
  flex: 1 1 300px;
}

.split-band .media {
  flex: 1 1 280px;
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .price {
  font-weight: 600;
  color: var(--accent-dark);
}

.service-card button {
  margin-top: auto;
}

.trust-strip {
  background: #f0ebe6;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.trust-item {
  flex: 1 1 220px;
  min-width: 200px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.step {
  background: white;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 10px 26px var(--shadow);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-panel,
.form-info {
  flex: 1 1 280px;
  min-width: 260px;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.service-select button {
  border-radius: 20px;
  border: 1px solid var(--stone);
  padding: 10px 14px;
  background: var(--fog);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.cta-band {
  background: var(--accent);
  color: white;
  padding: 40px;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-band a {
  background: white;
  color: var(--accent-dark);
  padding: 12px 18px;
  border-radius: 20px;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1e1b18;
  color: #efe7df;
}

.footer a {
  color: #efe7df;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: white;
  padding: 12px 16px;
  border-radius: 26px;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 8;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 28px var(--shadow);
  display: none;
  max-width: 320px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 40px 6vw 30px;
  background: var(--light);
}

.page-hero h1 {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.contact-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
}

.reference-list {
  margin-top: 12px;
  font-size: 13px;
  color: #d6cfc7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thanks-wrap {
  padding: 80px 6vw;
  text-align: center;
}

.thanks-wrap h1 {
  font-size: 34px;
  margin-bottom: 16px;
}

.thanks-wrap p {
  color: var(--muted);
  margin-bottom: 22px;
}

@media (max-width: 780px) {
  .hero-media {
    transform: none;
  }

  .cta-band {
    justify-content: flex-start;
  }
}
