* {
  box-sizing: border-box;
}

:root {
  --sand: #f3efe9;
  --stone: #4b4a46;
  --granite: #2f2f2d;
  --moss: #6c7a5c;
  --clay: #b58b62;
  --chalk: #ffffff;
  --shadow: rgba(26, 26, 26, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--granite);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 6vw 18px;
  background: var(--chalk);
  border-bottom: 1px solid #e3ddd2;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-brand span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-brand small {
  font-size: 12px;
  color: #6d6b66;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--moss);
}

.ad-label {
  background: #fff5d6;
  color: #6b4b21;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(166, 120, 52, 0.12);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 6vw 80px;
  background-color: #dad4c9;
  background-image: url("https://images.unsplash.com/photo-1743208552339-0b7ec0ddf8c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f1e1b;
}

.hero-inner {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  background: rgba(255, 255, 255, 0.86);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 36px;
  line-height: 1.2;
}

.hero-copy p {
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 260px;
  align-self: center;
  background-color: #c6b7a4;
  border-radius: 24px;
  padding: 12px;
  transform: translateY(12px);
  box-shadow: 0 16px 36px var(--shadow);
}

.hero-media img {
  border-radius: 18px;
  width: 100%;
  height: 320px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--granite);
  color: var(--chalk);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(45, 45, 45, 0.2);
}

.button.outline {
  background: transparent;
  border: 1px solid var(--granite);
  color: var(--granite);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .offset {
  transform: translateY(-14px);
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.note {
  font-size: 14px;
  color: #6b6862;
}

.image-frame {
  background-color: #cfc4b5;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 14px 30px var(--shadow);
}

.image-frame img {
  border-radius: 16px;
  width: 100%;
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--chalk);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 26px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.texture-band {
  background-color: #d9d1c2;
  background-image: url("https://images.unsplash.com/photo-1542643288-3937ce1e7e17?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #2a2520;
}

.testimonial {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

.form-wrap {
  background: var(--chalk);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 34px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-fields {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-fields label {
  font-size: 13px;
  font-weight: 600;
}

.form-fields select,
.form-fields input,
.form-fields textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d1c7;
  font-size: 14px;
}

.form-media {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--clay);
}

.footer {
  margin-top: auto;
  background: #1f1e1b;
  color: #f7f2ea;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #f0d8b2;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.legal-card {
  flex: 1 1 240px;
  background: #2b2a27;
  padding: 18px;
  border-radius: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: var(--chalk);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px var(--shadow);
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  background-color: #d5cdc0;
  background-size: cover;
  background-position: center;
  padding: 70px 6vw 80px;
  color: #23221e;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1553973368-d27a35feb008?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1597857194715-8935b219f6e9?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1529753253655-470be9a42781?w=1400&q=80");
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.highlight-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.highlight-strip .tile {
  flex: 1 1 200px;
  background: var(--chalk);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px var(--shadow);
}

.contact-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--chalk);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
}

.muted {
  color: #6a6761;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.thanks-box {
  background: var(--chalk);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 30px var(--shadow);
  max-width: 620px;
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 28px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
