 :root {
   --ink: #101820;
   --cloud: #f5f5f2;
   --sand: #f2ebe3;
   --sky: #e6eef6;
   --sage: #d8e4dc;
   --plum: #6d5f88;
   --rose: #c8677c;
   --gold: #f0c36d;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   background: var(--cloud);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 header {
   padding: 24px 0;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 nav ul {
   list-style: none;
   display: flex;
   gap: 16px;
   padding: 0;
   margin: 0;
   flex-wrap: wrap;
 }
 
 nav a {
   font-size: 0.95rem;
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 nav a:hover {
   border-color: var(--plum);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 32px;
   align-items: center;
   padding: 64px 0;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .panel {
   flex: 1;
 }
 
 .panel.highlight {
   background: var(--sand);
   padding: 32px;
   border-radius: 24px;
   box-shadow: 0 30px 50px rgba(16, 24, 32, 0.08);
 }
 
 .panel.media {
   position: relative;
 }
 
 .panel.media img {
   border-radius: 28px;
   box-shadow: 0 25px 45px rgba(16, 24, 32, 0.15);
 }
 
 .panel.media .badge {
   position: absolute;
   bottom: -16px;
   left: 16px;
   background: var(--plum);
   color: #fff;
   padding: 10px 16px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .hero {
   background: var(--sky);
 }
 
 .hero .panel.highlight {
   background: #fff;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.8rem;
   color: var(--plum);
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 16px;
   font-weight: 600;
 }
 
 h1 {
   font-size: clamp(2rem, 4vw, 3.4rem);
   line-height: 1.1;
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.8vw, 2.4rem);
 }
 
 p {
   margin: 0 0 16px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 24px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 2px solid var(--ink);
   font-weight: 600;
   background: transparent;
   cursor: pointer;
 }
 
 .button.primary {
   background: var(--plum);
   border-color: var(--plum);
   color: #fff;
 }
 
 .button.alt {
   background: var(--gold);
   border-color: var(--gold);
 }
 
 .inline-link {
   color: var(--plum);
   font-weight: 600;
   border-bottom: 1px solid var(--plum);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   padding: 20px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 18px 30px rgba(16, 24, 32, 0.08);
 }
 
 .card img {
   border-radius: 16px;
   height: 160px;
   object-fit: cover;
 }
 
 .price {
   font-weight: 700;
   color: var(--rose);
 }
 
 .quote {
   background: var(--sage);
   padding: 18px 22px;
   border-radius: 18px;
   font-style: italic;
 }
 
 .form-block {
   background: #fff;
   padding: 28px;
   border-radius: 28px;
   box-shadow: 0 24px 40px rgba(16, 24, 32, 0.12);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #c9ced6;
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-message {
   font-size: 0.9rem;
   color: var(--rose);
 }
 
 footer {
   background: var(--ink);
   color: #fff;
   padding: 48px 0;
 }
 
 footer a {
   color: #fff;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 16px;
   bottom: 16px;
   background: var(--rose);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   z-index: 10;
   box-shadow: 0 20px 30px rgba(16, 24, 32, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #fff;
   padding: 18px 22px;
   border-radius: 18px;
   box-shadow: 0 18px 40px rgba(16, 24, 32, 0.18);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 15;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .hidden {
   display: none;
 }
 
 .list-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-line {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding-bottom: 12px;
   border-bottom: 1px solid rgba(16, 24, 32, 0.12);
 }
 
 .meta {
   font-size: 0.9rem;
   color: #5a6570;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cards {
     flex-direction: row;
   }
 
   .card {
     flex: 1;
   }
 
   .list-grid {
     flex-direction: row;
   }
 
   .service-line {
     flex: 1;
     border-bottom: none;
     border-right: 1px solid rgba(16, 24, 32, 0.12);
     padding-right: 12px;
   }
 
   .service-line:last-child {
     border-right: none;
   }
 }
