 :root {
   --bg: #f7f4f1;
   --ink: #2a2724;
   --muted: #6c6460;
   --accent: #8a5b3d;
   --soft: #efe7e1;
   --deep: #201b18;
   --outline: #d9cfc6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
 }
 
 header {
   padding: 28px 6vw 12px;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-size: 1.2rem;
   letter-spacing: 0.14em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: #7a5a4a;
   max-width: 320px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 56px;
   padding: 12px 6vw 80px;
 }
 
 .hero {
   min-height: 60vh;
   background-size: cover;
   background-position: center;
   border-radius: 22px;
   padding: 54px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 28px;
   position: relative;
   overflow: hidden;
   color: #1d1a17;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(247, 244, 241, 0.76);
 }
 
 .hero > * {
   position: relative;
   z-index: 1;
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
   margin: 0 0 8px;
   max-width: 640px;
 }
 
 .hero p {
   max-width: 560px;
   font-size: 1.05rem;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 52%;
 }
 
 .split .media {
   flex: 1 1 48%;
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 0 0 12px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .btn {
   background: var(--deep);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
   font-size: 0.95rem;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--deep);
   color: var(--deep);
 }
 
 .btn-soft {
   background: var(--soft);
   color: var(--deep);
 }
 
 .inline-link {
   text-decoration: underline;
 }
 
 .img-wrap {
   background-color: #e8e0d8;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-grid {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border: 1px solid var(--outline);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.15rem;
 }
 
 .price {
   font-size: 1.1rem;
   color: var(--accent);
 }
 
 .highlight {
   background: var(--soft);
   border-radius: 20px;
   padding: 28px;
 }
 
 .quote {
   border-left: 3px solid var(--accent);
   padding-left: 16px;
   font-style: italic;
 }
 
 .form-section {
   background: #fff;
   border-radius: 20px;
   padding: 32px;
   border: 1px solid var(--outline);
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-grid label {
   font-size: 0.9rem;
 }
 
 .form-grid input,
 .form-grid select,
 .form-grid textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--outline);
   font-size: 0.95rem;
   width: 100%;
 }
 
 .footer {
   padding: 40px 6vw 80px;
   background: #efebe7;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   background: #fff;
   border: 1px solid var(--outline);
   border-radius: 999px;
   padding: 8px 16px;
   display: flex;
   gap: 12px;
   align-items: center;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   z-index: 10;
 }
 
 .sticky-cta span {
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #fff;
   border: 1px solid var(--outline);
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
   z-index: 11;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .page-hero {
   padding: 64px 6vw 40px;
   background-size: cover;
   background-position: center;
   color: #1b1714;
   position: relative;
 }
 
 .page-hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(247, 244, 241, 0.8);
 }
 
 .page-hero > * {
   position: relative;
   z-index: 1;
 }
 
 .hero-home {
   background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
 }
 
 .bg-atelier {
   background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 32px;
   border-radius: 20px;
   color: #1f1b18;
 }
 
 .hero-about {
   background-image: url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1400&q=80");
 }
 
 .hero-services {
   background-image: url("https://images.unsplash.com/photo-1479064555552-3ef4979f8908?w=1400&q=80");
 }
 
 .hero-contact {
   background-image: url("https://images.unsplash.com/photo-1514996937319-344454492b37?w=1400&q=80");
 }
 
 .hero-privacy {
   background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
 }
 
 .hero-gdpr {
   background-image: url("https://images.unsplash.com/photo-1496317899792-9d7dbcd928a1?w=1400&q=80");
 }
 
 .hero-cookies {
   background-image: url("https://images.unsplash.com/photo-1519744792095-2f2205e87b6f?w=1400&q=80");
 }
 
 .hero-terms {
   background-image: url("https://images.pexels.com/photos/7147458/pexels-photo-7147458.jpeg");
 }
 
 .notice {
   background: #fff;
   border: 1px solid var(--outline);
   border-radius: 16px;
   padding: 18px;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .hero {
     padding: 36px;
   }
 
   .sticky-cta {
     width: calc(100% - 32px);
     justify-content: space-between;
   }
 }
