:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --soft-ink: #4a4a4a;
  --sand: #f6f1eb;
  --rose: #f2d6cc;
  --sage: #d8e0d2;
  --stone: #e2e2e2;
  --accent: #3a3f6b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 24px 8vw 12px;
  background: #fff;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--sand);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--soft-ink);
  max-width: 280px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 8vw;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.45);
}

.hero-content {
  position: relative;
  max-width: 540px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 28px;
}

.btn {
  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;
}

.btn:hover,
.btn:focus {
  opacity: 0.88;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 72px 8vw;
}

.section.sand {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.asym {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asym.reverse {
  flex-direction: row-reverse;
}

.asym .copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym .media {
  flex: 1 1 320px;
  min-width: 280px;
  position: relative;
}

.offset-up {
  margin-top: -32px;
}

.offset-down {
  margin-top: 32px;
}

.img-frame {
  background: #d9d1c7;
  padding: 10px;
}

.inline-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.highlight-row p {
  flex: 1 1 280px;
  margin: 0;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c2bc;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  padding: 52px 8vw;
  background: #101010;
  color: #f1f1f1;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

footer a {
  color: #f1f1f1;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c9c9c9;
  margin-top: 18px;
}

.page-hero {
  padding: 80px 8vw 48px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0 0 12px;
}

.split-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.split-highlight .inline-card {
  flex: 1 1 260px;
}

.bg-thread {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-thread::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 20, 0.55);
}

.bg-thread .content {
  position: relative;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-studio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
}

.bg-studio .content {
  position: relative;
}

.bg-moodboard {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-moodboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);
}

.bg-moodboard .content {
  position: relative;
}

.bg-showroom {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-showroom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 22, 0.55);
}

.bg-showroom .content {
  position: relative;
}

.bg-desk {
  background-image: url("https://images.unsplash.com/photo-1479064555552-3ef4979f8908?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-desk::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.55);
}

.bg-desk .content {
  position: relative;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 860px) {
  .hero {
    padding: 64px 8vw;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
  }

  .sticky-cta a {
    width: 100%;
    justify-content: center;
  }
}
