 :root {
   --ink: #1d1b1f;
   --muted: #5f5a66;
   --accent: #b13b62;
   --accent-dark: #7c2240;
   --sand: #f6f1ec;
   --fog: #eef1f5;
   --night: #151217;
   --white: #ffffff;
   --radius: 24px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--white);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .top-nav {
   padding: 24px 0;
 }
 
 .top-nav .nav-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .top-nav .brand {
   font-weight: 700;
   letter-spacing: 0.3px;
 }
 
 .top-nav .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .top-nav .nav-links a {
   color: var(--ink);
   font-weight: 500;
 }
 
 .sticky-cta {
   position: sticky;
   top: 0;
   z-index: 5;
   background: var(--night);
   color: var(--white);
 }
 
 .sticky-cta .cta-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 16px 0;
 }
 
 .sticky-cta .cta-row a {
   color: var(--white);
   font-weight: 600;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .section.dark {
   background: var(--night);
   color: var(--white);
 }
 
 .section.fog {
   background: var(--fog);
 }
 
 .section.layered {
   position: relative;
   overflow: hidden;
 }
 
 .section.layered::before {
   content: "";
   position: absolute;
   width: 320px;
   height: 320px;
   border-radius: 50%;
   background: rgba(177, 59, 98, 0.08);
   top: -120px;
   right: -80px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 32px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .panel {
   flex: 1;
 }
 
 .panel.image {
   background: var(--white);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 18px 40px rgba(20, 16, 22, 0.12);
 }
 
 .panel.note {
   background: var(--white);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: 0 12px 28px rgba(20, 16, 22, 0.1);
 }
 
 .eyebrow {
   font-size: 0.9rem;
   letter-spacing: 0.2em;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .headline {
   font-size: clamp(2.2rem, 4vw, 3.4rem);
   margin: 16px 0 20px;
   line-height: 1.2;
 }
 
 .subhead {
   font-size: 1.15rem;
   color: var(--muted);
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 24px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--white);
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .cta.outline {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }
 
 .cta.dark {
   background: var(--accent-dark);
 }
 
 .cta-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .metric-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
 }
 
 .metric-item span {
   font-weight: 700;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 18px;
   background: var(--white);
   box-shadow: 0 10px 22px rgba(20, 16, 22, 0.08);
 }
 
 .service-row .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-block {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-block label {
   font-weight: 600;
 }
 
 .form-block input,
 .form-block select,
 .form-block textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d1cdd5;
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-block textarea {
   min-height: 120px;
 }
 
 .quote {
   font-style: italic;
   font-size: 1.05rem;
 }
 
 .footer {
   background: #0f0d12;
   color: var(--white);
   padding: 40px 0;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .footer .footer-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   border-radius: 16px;
   box-shadow: 0 12px 30px rgba(20, 16, 22, 0.18);
   padding: 16px;
   display: none;
   z-index: 10;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (min-width: 900px) {
   .top-nav .nav-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .sticky-cta .cta-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .metrics {
     flex-direction: row;
   }
 
   .service-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .footer .footer-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .cookie-banner {
     left: auto;
     right: 24px;
     bottom: 24px;
     max-width: 420px;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
