 :root {
   --bg: #f7f4ef;
   --bg-dark: #1f2a2a;
   --accent: #2f6f5e;
   --accent-alt: #c97d3d;
   --text: #1a1a1a;
   --muted: #5f5f5f;
   --card: #ffffff;
   --soft: #efe6dc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   padding: 24px 8%;
   background: #ffffff;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-direction: row;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 48px 8% 64px;
   position: relative;
   background: var(--bg-dark);
   color: #f4f4f4;
 }
 
 .hero__media {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   background-color: #2c3d3d;
 }
 
 .hero__image {
   width: 100%;
   height: 440px;
   object-fit: cover;
   display: block;
 }
 
 .hero__content {
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 620px;
 }
 
 .cta-row {
   display: flex;
   flex-direction: row;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   border: none;
   padding: 12px 20px;
   font-size: 1rem;
   border-radius: 999px;
   cursor: pointer;
   background: var(--accent);
   color: #ffffff;
 }
 
 .btn--outline {
   background: transparent;
   border: 1px solid #ffffff;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 56px 8%;
 }
 
 .section--soft {
   background: var(--soft);
 }
 
 .section--dark {
   background: var(--bg-dark);
   color: #f0f0f0;
 }
 
 .split {
   display: flex;
   flex-direction: row;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split__text,
 .split__media {
   flex: 1 1 320px;
 }
 
 .media-card {
   border-radius: 16px;
   overflow: hidden;
   background-color: #d6ccc2;
 }
 
 .media-card img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   display: block;
 }
 
 .inline-grid {
   display: flex;
   flex-direction: row;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--card);
   border-radius: 14px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-width: 220px;
 }
 
 .card__media {
   border-radius: 12px;
   overflow: hidden;
   background-color: #d8c9bf;
 }
 
 .card__media img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   display: block;
 }
 
 .testimonial {
   background: #ffffff;
   border-left: 4px solid var(--accent-alt);
   padding: 16px;
   border-radius: 8px;
 }
 
 .price-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price-item {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   gap: 16px;
   background: #ffffff;
   padding: 16px;
   border-radius: 12px;
   flex-wrap: wrap;
 }
 
 .form-wrap {
   background: #ffffff;
   border-radius: 18px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #c9c9c9;
   font-size: 1rem;
 }
 
 .cta-bar {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #e0e0e0;
   padding: 12px 8%;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   z-index: 10;
 }
 
 .footer {
   padding: 32px 8% 80px;
   background: #151b1b;
   color: #d5d5d5;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: row;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   max-width: 320px;
   background: #ffffff;
   color: var(--text);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: row;
   gap: 10px;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: #e6f0ec;
   color: var(--accent);
   font-size: 0.85rem;
 }
 
 .page-hero {
   padding: 48px 8%;
   background: var(--soft);
 }
 
 .page-hero__media {
   margin-top: 24px;
   border-radius: 16px;
   overflow: hidden;
   background-color: #d5c9bc;
 }
 
 .page-hero__media img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   display: block;
 }
 
 .legal-content {
   padding: 40px 8% 80px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .contact-block {
   background: #ffffff;
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .disclaimer {
   font-size: 0.9rem;
   color: #bfc6c6;
 }
 
 .reference-list {
   display: flex;
   flex-direction: column;
   gap: 6px;
   font-size: 0.9rem;
 }
 
 @media (max-width: 768px) {
   .topbar {
     flex-direction: column;
     align-items: flex-start;
     gap: 12px;
   }
 
   .cta-bar {
     flex-direction: column;
     align-items: flex-start;
   }
 }
