@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --bg: #f7f3ef;
  --ink: #1d1d1b;
  --muted: #5a5a56;
  --accent: #d3752b;
  --accent-dark: #a9541b;
  --paper: #ffffff;
  --sand: #efe6dc;
  --border: #e1d7cd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--sand);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 0;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.split-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.split-copy {
  color: var(--muted);
}

.image-panel {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
}

.img-hero {
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=1600&auto=format&fit=crop");
}

.img-strategy {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1600&auto=format&fit=crop");
}

.img-story {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1600&auto=format&fit=crop");
}

.img-process {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop");
}

.img-atelier {
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?q=80&w=1600&auto=format&fit=crop");
}

.img-trust {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?q=80&w=1600&auto=format&fit=crop");
}

.img-form {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1600&auto=format&fit=crop");
}

.layered {
  position: relative;
  background: var(--paper);
}

.layered::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--sand);
  border-radius: 32px;
  z-index: 0;
}

.layered .container {
  position: relative;
  z-index: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-row span {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.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;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover {
  border-bottom-color: var(--accent-dark);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--border);
}

.service-card img {
  width: 100%;
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.lead-form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: 360px;
  padding: 18px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin: 0 0 12px;
}

.page-hero p {
  max-width: 640px;
  color: var(--muted);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list strong {
  display: block;
  font-weight: 600;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    align-items: stretch;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .split-content {
    justify-content: center;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .two-col {
    flex-direction: row;
  }
}
