* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1a17;
  --muted: #5a514c;
  --sand: #f3eee7;
  --linen: #fbf7f2;
  --clay: #c07a48;
  --olive: #6f7462;
  --slate: #2d3a44;
  --accent: #9b4b2e;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-weight: 600;
}

.nav a:hover,
.nav a:focus {
  color: var(--slate);
}

.sidebar-footer {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--slate);
  color: #fff;
  padding: 48px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1491557345352-5929e343eb89?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1519682577862-22b62b24e493?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1518998053901-5348d3961a04?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.pexels.com/photos/14400578/pexels-photo-14400578.png");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.section {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-card {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(31, 26, 23, 0.08);
}

.section-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.section-card p {
  color: var(--muted);
}

.highlight {
  background: var(--sand);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 23, 0.68);
}

.bg-archive > * {
  position: relative;
  z-index: 1;
}

.bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-workshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(45, 58, 68, 0.65);
}

.bg-workshop > * {
  position: relative;
  z-index: 1;
}

.highlight ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 20px rgba(31, 26, 23, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrapper {
  background: var(--slate);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-wrapper form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
}

.form-note {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.cta-link {
  font-weight: 600;
  text-decoration: underline;
}

.legal {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-frame {
  background: #e1d6cc;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(31, 26, 23, 0.18);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--olive);
  color: #fff;
}

.cookie-reject {
  background: var(--sand);
  color: var(--ink);
}

.footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e1d6cc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thanks-box {
  background: var(--sand);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 24px 60px;
  }

  .section,
  .section.reverse {
    flex-direction: column;
  }
}
