 :root {
   color-scheme: light;
   --ink: #1d1a1a;
   --muted: #5d4e4e;
   --rose: #c96c86;
   --pearl: #f7f1f3;
   --latte: #efe3df;
   --olive: #93897e;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 6vw;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.92rem;
 }
 
 .nav-cta {
   padding: 10px 18px;
   background: var(--ink);
   color: #fff;
   border-radius: 24px;
   font-size: 0.85rem;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 40px;
   padding-bottom: 80px;
 }
 
 .section {
   padding: 48px 6vw;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split-content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.75rem;
   letter-spacing: 0.2em;
   color: var(--olive);
 }
 
 h1,
 h2,
 h3 {
   margin: 0;
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.4rem, 4vw, 3.6rem);
 }
 
 h2 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 28px;
   border: 1px solid var(--ink);
   font-size: 0.9rem;
   transition: all 0.2s ease;
 }
 
 .button.primary {
   background: var(--ink);
   color: #fff;
   border-color: var(--ink);
 }
 
 .button.ghost {
   background: transparent;
 }
 
 .button:hover {
   transform: translateY(-1px);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   background: var(--pearl);
 }
 
 .card img {
   border-radius: 16px;
   height: 190px;
   object-fit: cover;
 }
 
 .price {
   font-weight: 600;
   color: var(--rose);
 }
 
 .split-image {
   border-radius: 24px;
   overflow: hidden;
   position: relative;
 }
 
 .split-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--latte);
   font-size: 0.8rem;
 }
 
 .highlight {
   background: var(--latte);
   border-radius: 24px;
 }
 
 .form-panel {
   background: #fff;
   padding: 22px;
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-panel label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d7c9c9;
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 .inline-cta {
   font-weight: 600;
   color: var(--rose);
 }
 
 .gallery {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .gallery-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .gallery-row img {
   flex: 1 1 140px;
   border-radius: 16px;
   height: 160px;
   object-fit: cover;
 }
 
 .testimonial {
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid #eadede;
 }
 
 footer {
   padding: 40px 6vw 60px;
   background: #1e1919;
   color: #f6f1f1;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 footer a {
   color: inherit;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.85rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--rose);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
   font-size: 0.85rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 340px;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   padding: 18px;
   border-radius: 18px;
   border: 1px solid #e4d7d7;
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: #fff;
 }
 
 .service-meta {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .wide-section {
   background: var(--pearl);
 }
 
 .notice {
   background: #fff3f6;
   border-left: 4px solid var(--rose);
   padding: 16px;
   border-radius: 16px;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .split-content,
   .split-image {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .gallery {
     flex-direction: row;
   }
 
   .gallery-row {
     flex: 1;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .service-item {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .service-item > div {
     max-width: 65%;
   }
 }
