* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f0;
  --ink: #1f1e1c;
  --muted: #605a52;
  --accent: #2a5b8e;
  --accent-2: #b3542b;
  --paper: #ffffff;
  --sand: #efe8dd;
  --slate: #1f2c36;
  --fallback-1: #d9e0e5;
  --fallback-2: #e6dfd2;
  --fallback-3: #d7d2c9;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--slate);
  color: #f6f7f8;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #d4d7db;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  color: #f6f7f8;
  font-weight: 600;
}

.nav-list a.btn {
  display: inline-flex;
  padding: 10px 14px;
  background: var(--accent);
  border-radius: 6px;
  color: #fff;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--muted {
  background: var(--sand);
}

.section--paper {
  background: var(--paper);
}

.section--dark {
  background: var(--slate);
  color: #f6f7f8;
}

.section--image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.section--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.section--image .section-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1;
}

.hero-title {
  font-size: 38px;
  line-height: 1.2;
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card-media {
  background: var(--fallback-1);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.media-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.inline-media {
  background: var(--fallback-2);
  border-radius: 10px;
  overflow: hidden;
}

.inline-media img {
  height: 260px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--paper);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #d2c9bc;
}

.service-form {
  background: var(--paper);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c7c1b8;
  font-size: 15px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
}

.form-message {
  font-size: 14px;
  color: var(--accent-2);
  min-height: 20px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.sticky-cta a {
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
}

.footer {
  padding: 40px 8vw;
  background: var(--slate);
  color: #e7eaee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e7eaee;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 13px;
  color: #cfd5dc;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: var(--ink);
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  max-width: 340px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-color: var(--fallback-3);
}

.atelier-bg {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-color: var(--fallback-2);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .split {
    flex-direction: column;
  }
}
