 :root {
   color-scheme: light;
   --bg: #f6f2ed;
   --surface: #ffffff;
   --ink: #1f1f1f;
   --muted: #5c5c5c;
   --accent: #b33a2f;
   --accent-dark: #842821;
   --accent-soft: #f0d7d3;
   --line: #e0d6cd;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6%;
   gap: 20px;
 }
 
 .nav__brand {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
 }
 
 .nav__links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: center;
 }
 
 .nav__label {
   font-size: 12px;
   color: var(--muted);
   background: #f4ebe2;
   padding: 8px 10px;
   border-radius: 999px;
 }
 
 .cta-button,
 .cta-link {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   cursor: pointer;
 }
 
 .cta-button {
   background: var(--accent);
   color: #fff;
 }
 
 .cta-button:hover {
   background: var(--accent-dark);
 }
 
 .cta-link {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .cta-link:hover {
   background: var(--accent-soft);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 60px;
   padding: 40px 6% 80px;
 }
 
 .split {
   display: flex;
   align-items: stretch;
   gap: 40px;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split__text,
 .split__media {
   flex: 1 1 360px;
   min-width: 280px;
 }
 
 .split__text {
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .split__text h1,
 .split__text h2 {
   margin: 0;
   font-size: clamp(28px, 3vw, 40px);
 }
 
 .split__text p {
   margin: 0;
   line-height: 1.6;
   color: var(--muted);
 }
 
 .image-frame {
   background: #e8ded4;
   padding: 14px;
   border-radius: 20px;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   border-radius: 16px;
   object-fit: cover;
 }
 
 .panel {
   background: var(--surface);
   padding: 28px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .panel h3 {
   margin-top: 0;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 16px;
   padding-bottom: 12px;
   border-bottom: 1px dashed var(--line);
 }
 
 .service-item:last-child {
   border-bottom: none;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
   white-space: nowrap;
 }
 
 .info-strips {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .info-strip {
   flex: 1 1 180px;
   background: #fdf7f1;
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }
 
 .sticky-cta:hover {
   background: var(--accent-dark);
 }
 
 footer {
   background: #1f1f1f;
   color: #f8f4f0;
   padding: 40px 6% 60px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 footer a {
   color: #f8f4f0;
 }
 
 .footer-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   justify-content: space-between;
 }
 
 .disclaimer {
   font-size: 13px;
   color: #d5c9c0;
   line-height: 1.5;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: var(--surface);
   border: 1px solid var(--line);
   padding: 16px;
   border-radius: 14px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   display: none;
   gap: 12px;
   flex-direction: column;
 }
 
 .cookie-banner.active {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .link-list {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 @media (max-width: 780px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .nav__links {
     justify-content: flex-start;
   }
 
   .sticky-cta {
     left: 20px;
     right: auto;
   }
 }
