* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1e1c;
  --muted: #5f5a54;
  --sand: #f4f1ec;
  --stone: #e2ddd6;
  --clay: #c9b9a5;
  --accent: #8d6b4f;
  --accent-dark: #6f533d;
  --leaf: #4e5a52;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow: hidden;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 6% 40px;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  position: relative;
  min-height: 320px;
}

.hero-visual .img-frame {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
}

.hero-card {
  position: absolute;
  bottom: -30px;
  left: 10%;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  max-width: 260px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: var(--white);
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.asym-wrap.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.panel.muted {
  background: var(--stone);
}

.img-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.img-frame.tall {
  min-height: 360px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-callout {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: var(--leaf);
  color: var(--white);
  border-radius: 20px;
  padding: 26px;
}

.split-callout a {
  color: var(--white);
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  cursor: pointer;
  background: var(--sand);
}

.service-option input {
  margin: 0;
}

.service-option.active {
  border-color: var(--accent);
  background: #efe7dd;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  background: #1c1b19;
  color: #d7d1ca;
  padding: 40px 6% 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #b7b0a8;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta a {
  color: var(--white);
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--stone);
  padding: 18px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: 1px solid var(--accent);
  background: var(--white);
  cursor: pointer;
  color: var(--accent-dark);
}

.cookie-actions button.accept {
  background: var(--accent);
  color: var(--white);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}

.list li {
  list-style: disc;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-row .img-frame {
  flex: 1 1 220px;
  min-height: 180px;
}

@media (max-width: 860px) {
  .hero-card {
    position: static;
    box-shadow: none;
    margin-top: 12px;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6%;
    display: inline-flex;
    align-self: flex-end;
  }
}
