 :root {
   --ink: #1c1c1a;
   --muted: #5f5b57;
   --sand: #f6f1ea;
   --sage: #c9d3c1;
   --clay: #d9b8a6;
   --sun: #f4c86b;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--sand);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   max-width: 1180px;
   margin: 0 auto;
   padding: 24px;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 24px;
   margin: 12px auto 0;
   max-width: 1180px;
 }
 
 .nav .brand {
   font-weight: 700;
   letter-spacing: 1px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
   padding: 36px 0 12px;
   position: relative;
 }
 
 .hero-copy {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .hero-copy h1 {
   font-size: clamp(2.4rem, 5vw, 3.6rem);
   margin-bottom: 12px;
 }
 
 .hero-media {
   flex: 1 1 360px;
   position: relative;
 }
 
 .hero-media img {
   border-radius: 24px;
   box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
 }
 
 .hero-badge {
   position: absolute;
   bottom: -18px;
   left: -20px;
   background: var(--sun);
   padding: 12px 16px;
   border-radius: 16px;
   font-weight: 600;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--ink);
   color: var(--white);
   font-weight: 600;
   margin-top: 12px;
 }
 
 .cta.alt {
   background: var(--clay);
   color: var(--ink);
 }
 
 .cta.outline {
   background: transparent;
   border: 2px solid var(--ink);
   color: var(--ink);
 }
 
 .section {
   margin: 52px 0;
   position: relative;
 }
 
 .section.split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
 }
 
 .section.split .text {
   flex: 1 1 320px;
 }
 
 .section.split .media {
   flex: 1 1 320px;
 }
 
 .offset-card {
   background: var(--white);
   border-radius: 24px;
   padding: 24px;
   box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
 }
 
 .offset-card.shift-up {
   margin-top: -24px;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .services {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--white);
   border-radius: 20px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   position: relative;
 }
 
 .service-card .price {
   font-size: 1.4rem;
   font-weight: 700;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--sage);
   font-size: 0.85rem;
 }
 
 .panel {
   background: var(--white);
   padding: 28px;
   border-radius: 28px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .panel.clay {
   background: var(--clay);
 }
 
 .panel.sage {
   background: var(--sage);
 }
 
 .testimonials {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .testimonial {
   flex: 1 1 220px;
   background: var(--white);
   padding: 20px;
   border-radius: 18px;
 }
 
 .form-wrap {
   background: var(--white);
   padding: 28px;
   border-radius: 24px;
   box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d0c7bd;
   font-size: 1rem;
   background: #fff;
 }
 
 .inline-cta {
   color: var(--ink);
   font-weight: 600;
   border-bottom: 2px solid var(--sun);
 }
 
 .footer {
   margin-top: 64px;
   padding: 32px 24px;
   background: #eae1d8;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer-links {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .floating-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--ink);
   color: var(--white);
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--white);
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
   display: none;
   gap: 12px;
   flex-direction: column;
   max-width: 320px;
   z-index: 9;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
   padding: 10px 12px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: var(--ink);
   color: var(--white);
 }
 
 .cookie-actions .reject {
   background: transparent;
   border: 2px solid var(--ink);
 }
 
 .aside-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .image-frame {
   position: relative;
 }
 
 .image-frame::after {
   content: "";
   position: absolute;
   right: -16px;
   bottom: -16px;
   width: 70%;
   height: 70%;
   background: var(--sage);
   border-radius: 24px;
   z-index: -1;
 }
 
 .stacked-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .stacked-list div {
   background: var(--white);
   border-radius: 14px;
   padding: 12px 14px;
 }
 
 .hero-note {
   display: inline-flex;
   gap: 8px;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--sage);
   font-size: 0.85rem;
 }
 
 @media (max-width: 860px) {
   .hero-badge {
     left: 0;
     bottom: -28px;
   }
 
   .floating-cta {
     right: 12px;
     bottom: 12px;
   }
 }
