* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1d1a;
  --muted: #6a6258;
  --paper: #f7f3ee;
  --stone: #e8e1d8;
  --oak: #b07a48;
  --dark-oak: #7a4f2c;
  --moss: #6d7a63;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, 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;
}

.cover-img {
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--dark-oak);
  padding: 6px 10px;
  border: 1px solid var(--stone);
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: row;
  gap: 28px;
  padding: 48px 6vw 32px 6vw;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1772567732901-c95316803581?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
}

.hero-panel {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.hero-image-wrap {
  background: var(--stone);
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(18px);
}

.hero-image {
  border-radius: 10px;
  height: 320px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--oak);
  color: var(--white);
}

.btn-secondary {
  background: var(--stone);
  color: var(--ink);
}

.btn:focus {
  outline: 2px solid var(--dark-oak);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw;
}

.section-muted {
  background: var(--stone);
}

.section-split {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
  position: relative;
  top: -18px;
}

.offset-card.alt {
  top: 14px;
}

.image-card {
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
  padding: 10px;
}

.image-card img {
  border-radius: 12px;
  height: 240px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.service-card img {
  height: 180px;
  border-radius: 10px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-oak);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.step-number {
  background: var(--moss);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  background: #fbfaf8;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-link {
  color: var(--dark-oak);
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.floating-cta button {
  background: none;
  border: none;
  font-weight: 600;
  color: var(--dark-oak);
  cursor: pointer;
}

.testimonial-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  border-left: 4px solid var(--oak);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw;
  background: #12100e;
  color: #f4efe9;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: #d2c7bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--oak);
  color: var(--white);
}

.cookie-reject {
  background: var(--stone);
  color: var(--ink);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.hero-secondary {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 60px 6vw;
  position: relative;
}

.hero-secondary.about {
  background-image: url("https://images.unsplash.com/photo-1712506243496-39dded877074?w=1400&q=80");
}

.hero-secondary.services {
  background-image: url("https://images.unsplash.com/photo-1584950967742-2d5ddfa3c840?w=1400&q=80");
}


.hero-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 16, 0.55);
}

.hero-secondary .hero-secondary-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.media-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.media-row .image-card {
  flex: 1 1 240px;
}

@media (max-width: 900px) {
  .hero,
  .section-split,
  .section-split.reverse {
    flex-direction: column;
  }

  .hero-image {
    height: 260px;
  }
}
