* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2320;
  --muted: #5d6a62;
  --accent: #3b4f4a;
  --accent-light: #e7ede9;
  --warm: #f6f1ec;
  --peach: #f0e2d4;
  --sand: #f3efe8;
  --stone: #d8d2c8;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  position: relative;
  z-index: 3;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}

.hero {
  display: flex;
  justify-content: flex-end;
  background-color: #dcd2c7;
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 6vw 80px;
  position: relative;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  padding: 40px;
  border-radius: 32px 0 32px 0;
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.1);
}

.hero-panel h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--white);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--white);
}

.section.bathroom-bg {
  background-color: #e5ddd3;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.panel-overlay {
  background: rgba(246, 241, 236, 0.92);
  padding: 40px;
  border-radius: 26px;
}

.asym-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1.2;
}

.asym-media {
  flex: 1;
}

.media-frame {
  background: var(--stone);
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
}

.media-frame.small {
  height: 280px;
}

.media-frame.light {
  background: #d8d2c8;
}

.offset-card {
  background: var(--peach);
  padding: 32px;
  border-radius: 28px;
  margin-top: -40px;
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.08);
}

.highlight-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.text-margin {
  margin-top: 18px;
}

.highlight {
  flex: 1 1 200px;
  background: var(--accent-light);
  padding: 20px;
  border-radius: 18px;
}

.split-panel {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split-panel > div {
  flex: 1;
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  display: flex;
  gap: 24px;
  background: var(--white);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(31, 35, 32, 0.08);
}

.service-media {
  flex: 1;
  min-width: 240px;
  background: var(--stone);
}

.service-content {
  flex: 1.3;
  padding: 24px 28px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.selection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.select-card {
  flex: 1 1 220px;
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.select-card button {
  align-self: flex-start;
}

.form-panel {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(31, 35, 32, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid var(--stone);
  border-radius: 12px;
  font-size: 1rem;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d9dfdb;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(31, 35, 32, 0.2);
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 36px rgba(31, 35, 32, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background: var(--accent-light);
  padding: 80px 6vw 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.legal-content {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .asym-row,
  .service-card,
  .split-panel {
    flex-direction: column;
  }

  .hero {
    padding: 100px 6vw 60px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
