* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #4f5660;
  --paper: #f6f3ef;
  --sand: #efe6da;
  --slate: #2f3a45;
  --accent: #b07a3f;
  --accent-dark: #8f612f;
  --soft: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.top-bar {
  background: var(--slate);
  color: var(--soft);
}

.top-bar .page-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-title {
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: #f0e7db;
  max-width: 420px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-media {
  flex: 1 1 52%;
  min-height: 360px;
  border-radius: 24px;
  background-color: #d9d4cb;
  overflow: hidden;
}

.hero-content {
  flex: 1 1 42%;
  background: var(--soft);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  top: 26px;
  box-shadow: 0 24px 40px rgba(25, 25, 25, 0.12);
}

.hero-content h1 {
  font-size: 34px;
  line-height: 1.2;
}

.hero-content p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--soft);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(176, 122, 63, 0.1);
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-card {
  flex: 1 1 46%;
  background: var(--soft);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  top: -20px;
  box-shadow: 0 18px 30px rgba(25, 25, 25, 0.08);
}

.split-card h2 {
  margin-bottom: 12px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 50%;
  padding: 24px;
  background: var(--sand);
  border-radius: 18px;
}

.offset-media {
  flex: 1 1 40%;
  min-height: 280px;
  border-radius: 18px;
  background-color: #d6d2c6;
  overflow: hidden;
}

.services-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 280px;
  background: var(--soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  box-shadow: 0 16px 24px rgba(25, 25, 25, 0.08);
}

.service-card .media {
  min-height: 180px;
  background-color: #d9d1c4;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.accent-band {
  background: var(--slate);
  color: var(--soft);
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accent-band a {
  color: var(--soft);
  text-decoration: underline;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.process-step {
  flex: 1 1 220px;
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(25, 25, 25, 0.08);
}

.form-section {
  background: var(--soft);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(25, 25, 25, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c1b6;
  font-size: 14px;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.secondary-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 260px;
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
}

.footer {
  background: var(--slate);
  color: var(--soft);
  margin-top: 64px;
}

.footer .page-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--soft);
  text-decoration: underline;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--soft);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 24px rgba(25, 25, 25, 0.2);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--soft);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 30px rgba(25, 25, 25, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  border-radius: 18px;
  padding: 28px;
}

.page-hero .meta {
  color: var(--muted);
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.inline-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soft);
  border-radius: 18px;
  padding: 18px;
}

.inline-image .media {
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #d8d2c6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--soft);
  border-radius: 16px;
  padding: 18px;
  align-items: center;
}

.service-row .media {
  flex: 1 1 220px;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d7d0c4;
}

.service-row .details {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

.notice {
  background: #f0ede8;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.references a {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero-content {
    position: static;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
