* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --ink: #1d1c1a;
  --muted: #6f6a64;
  --accent: #2e3a4f;
  --accent-soft: #cbd2da;
  --sand: #efe7dc;
  --clay: #d7c6b4;
  --mist: #e6e2df;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #d7d1c8;
  padding-bottom: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--mist);
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6vw 70px;
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
  background-color: #3b3a37;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.55);
}

.hero-content {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  color: #f6f3ef;
}

.cta-primary,
.cta-secondary,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 28px;
  border: 1px solid transparent;
  font-weight: 600;
}

.cta-primary {
  background: #f7f1e8;
  color: #2b2a28;
}

.cta-secondary {
  background: #2e3a4f;
  color: #f9f6f2;
}

.cta-outline {
  border-color: #2e3a4f;
  color: #2e3a4f;
  background: transparent;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: var(--sand);
}

.section-contrast {
  background: #1f2b3a;
  color: #f4f2ee;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1488161628813-04466f872be2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2d30;
  position: relative;
  color: #f4f2ee;
}

.bg-atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 26, 30, 0.62);
}

.bg-atelier .storyline,
.bg-atelier h2,
.bg-atelier p,
.bg-atelier a {
  position: relative;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.section p {
  max-width: 720px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split > div {
  flex: 1 1 300px;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background-color: var(--clay);
}

.inline-image {
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  background-color: var(--mist);
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  max-width: 520px;
}

.list-block span {
  display: block;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  height: 180px;
  border-radius: 14px;
}

.card strong {
  font-size: 16px;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.quote {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  color: #2d2b29;
}

.quote span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.price-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-item strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: #2e3a4f;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d1c8;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f2b3a;
  color: #f6f3ee;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta a {
  background: #f7f1e8;
  color: #1f2b3a;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
}

footer {
  padding: 50px 6vw 70px;
  background: #141a20;
  color: #e5e0d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.footer-links a {
  color: #e5e0d8;
  border-bottom: 1px solid transparent;
}

.references {
  margin-top: 16px;
  font-size: 13px;
  color: #bdb6ad;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 18px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #2e3a4f;
  color: #f7f1e8;
}

.cookie-reject {
  background: #e5dfd5;
  color: #2d2b29;
}

.page-hero {
  padding: 90px 6vw 60px;
  background-size: cover;
  background-position: center;
  background-color: #2f333a;
  color: #ffffff;
  position: relative;
}

.about-hero {
  background-image: url("https://images.pexels.com/photos/6050413/pexels-photo-6050413.jpeg");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?w=1400&q=80");
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 26, 33, 0.55);
}

.page-hero h1,
.page-hero p {
  position: relative;
  max-width: 640px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal h2 {
  font-size: 24px;
  margin-top: 10px;
}

.legal p {
  color: var(--muted);
}

.callout {
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tight {
  padding-top: 40px;
}

.inline-link {
  color: #2e3a4f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
