* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #231f1c;
  --muted: #6e6560;
  --accent: #b56a8a;
  --accent-dark: #8f4b69;
  --sand: #f6efe9;
  --cream: #fff8f2;
  --rose: #f6dce7;
  --line: #e7d9d0;
  --shadow: 0 18px 45px rgba(35, 31, 28, 0.12);
  --radius: 22px;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  background: var(--cream);
}

.sidebar {
  width: 270px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand span {
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover {
  border-color: var(--accent);
}

.sidebar .micro-cta {
  margin-top: auto;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.sidebar .micro-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 600;
}

main {
  flex: 1;
  padding: 42px 5vw 90px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: center;
  background: var(--sand);
  border-radius: 30px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: var(--rose);
  border-radius: 50%;
  right: -60px;
  top: -40px;
  opacity: 0.6;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  z-index: 1;
}

.hero-text h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.hero-image {
  width: min(320px, 40vw);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 1;
}

.split-row {
  display: flex;
  gap: 28px;
}

.split-card {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-card h3 {
  font-size: 20px;
}

.grid-services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.service-item img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  background: var(--rose);
  padding: 26px;
  border-radius: var(--radius);
  font-style: italic;
}

.gallery-row {
  display: flex;
  gap: 18px;
}

.gallery-row img {
  flex: 1;
  border-radius: 18px;
}

.form-wrapper {
  display: flex;
  gap: 30px;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--line);
}

.form-wrapper form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrapper label {
  font-size: 14px;
  color: var(--muted);
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.form-helper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 40;
}

.contact-panel {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-panel div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight {
  background: var(--sand);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.policy h2 {
  font-size: 24px;
}

.policy p {
  color: var(--muted);
}

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
  }

  .sidebar .micro-cta {
    margin-top: 0;
    width: 100%;
  }

  .hero {
    flex-direction: column;
  }

  .split-row {
    flex-direction: column;
  }

  .gallery-row,
  .form-wrapper,
  .contact-panel {
    flex-direction: column;
  }

  .cookie-banner {
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
