@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #2e2a26;
  --muted: #6a5f56;
  --cream: #f6f1ec;
  --stone: #e7dfd6;
  --accent: #8a5c3c;
  --deep: #3f332b;
  --soft: #f0e7dd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  gap: 18px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--deep);
  background: var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 110px 0 150px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 241, 236, 0.82);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 90vw);
  margin-left: 7vw;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 12px 0 18px;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 16px;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover,
.sticky-cta:hover {
  filter: brightness(0.95);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.section {
  padding: 90px 0;
  position: relative;
}

.section.alt {
  background: var(--soft);
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1 1 320px;
}

.section .visual {
  flex: 1 1 320px;
}

.img-wrap {
  background: var(--stone);
  border-radius: 26px;
  overflow: hidden;
}

.offset-right {
  margin-right: -6vw;
}

.offset-left {
  margin-left: -6vw;
}

.atelier-bg {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.atelier-card {
  background: rgba(246, 241, 236, 0.9);
  padding: 32px;
  border-radius: 28px;
  width: min(560px, 90vw);
  margin-left: auto;
  margin-right: 8vw;
}

.quote-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quote-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
}

.price-card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--deep);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  flex: 1 1 320px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--deep);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 20;
}

footer {
  background: var(--deep);
  color: #f7f2ed;
  padding: 50px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-grid a {
  color: #f7f2ed;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8cfc7;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
  max-width: 420px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  background-size: cover;
  background-position: center;
  padding: 90px 0;
  color: var(--deep);
}

.page-hero .container {
  background: rgba(246, 241, 236, 0.86);
  padding: 30px;
  border-radius: 24px;
  max-width: 720px;
}

.page-hero.about {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}

.page-hero.services {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
}

.page-hero.contact {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.texture-band {
  background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.legal {
  padding: 70px 0;
}

.legal h1 {
  margin-top: 0;
}

.note {
  background: var(--stone);
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    margin-left: 5vw;
  }

  .offset-right,
  .offset-left {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
