* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1e1c;
  --muted: #5d5a55;
  --accent: #c1936b;
  --accent-dark: #8a6444;
  --sand: #f6f1ea;
  --stone: #e6dfd6;
  --night: #22201d;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
  background: #fff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.cta-button,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: var(--ink);
  color: #fff;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.cta-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.cta-link:hover {
  border-bottom-color: var(--accent-dark);
}

.section {
  padding: 70px 0;
  background: #fff;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #f8f4ee;
}

.section.accent {
  background: var(--stone);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.pane {
  flex: 1 1 320px;
  min-width: 0;
}

.hero-image {
  min-height: 420px;
  border-radius: 24px;
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.image-panel {
  min-height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}

.image-panel.study {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=80");
}

.image-panel.wardrobe {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1200&q=80");
}

.image-panel.city {
  background-image: url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1200&q=80");
}

.image-panel.studio {
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1200&q=80");
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pill {
  padding: 8px 16px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--stone);
  font-size: 0.9rem;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.step {
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.quote-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.metric {
  flex: 1 1 140px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 70%;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 26px;
  top: -28px;
  left: -20px;
  z-index: 0;
}

.layered .pane {
  position: relative;
  z-index: 1;
}

.sticky-card {
  position: sticky;
  top: 20px;
  padding: 24px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--stone);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  font-size: 1.05rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--stone);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 0.95rem;
  font-family: inherit;
}

.selection-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.selection-buttons button {
  border: 1px solid var(--stone);
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.selection-buttons button.active {
  background: var(--ink);
  color: #fff;
}

.helper-text {
  font-size: 0.9rem;
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid var(--stone);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: 18px;
  padding: 16px 20px;
  display: none;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
  width: min(680px, 92%);
}

.cookie-banner.show {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.small {
  padding: 9px 16px;
  font-size: 0.85rem;
}

.mt-14 {
  margin-top: 14px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.ml-12 {
  margin-left: 12px;
}

.ml-16 {
  margin-left: 16px;
}

@media (max-width: 780px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .sticky-card {
    position: static;
  }
}
