 :root {
   color-scheme: light;
   --ink: #1b1a17;
   --muted: #57524a;
   --accent: #c95b2c;
   --accent-dark: #8f3c1d;
   --cream: #fbf5ee;
   --sand: #f0e5d6;
   --leaf: #2f5e4e;
   --sky: #e8f1f7;
   --rose: #f6e1dd;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
 }

 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 22px 8vw 10px;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
   font-size: 1.1rem;
 }

 .split-nav {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }

 .split-nav a {
   padding-bottom: 6px;
   border-bottom: 2px solid transparent;
 }

 .split-nav a:hover {
   border-color: var(--accent);
 }

 .hero {
   display: flex;
   flex-direction: column;
   gap: 30px;
   padding: 10px 8vw 60px;
   position: relative;
 }

 .hero::after {
   content: "";
   position: absolute;
   top: 50px;
   right: 5vw;
   width: 240px;
   height: 240px;
   background: var(--rose);
   z-index: 0;
   transform: rotate(8deg);
 }

 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 640px;
   z-index: 1;
 }

 .hero-title {
   font-size: 2.6rem;
   line-height: 1.1;
 }

 .hero-media {
   display: flex;
   justify-content: flex-end;
   gap: 12px;
   z-index: 1;
 }

 .hero-media img {
   border-radius: 20px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }

 .primary-cta {
   background: var(--accent);
   color: #fff;
   padding: 14px 26px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }

 .secondary-cta {
   border: 1px solid var(--accent);
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   color: var(--accent-dark);
 }

 .section {
   padding: 70px 8vw;
   position: relative;
 }

 .section.alt {
   background: var(--cream);
 }

 .section.sky {
   background: var(--sky);
 }

 .section.rose {
   background: var(--rose);
 }

 .section .section-title {
   font-size: 1.8rem;
   margin-bottom: 14px;
 }

 .offset-row {
   display: flex;
   flex-direction: column;
   gap: 26px;
 }

 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 24px;
   background: #fff;
   border-radius: 24px;
   box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
 }

 .offset-block.shift {
   margin-left: auto;
   width: 88%;
 }

 .offset-block.compact {
   width: 80%;
 }

 .testimonial {
   border-left: 3px solid var(--accent);
   padding-left: 16px;
   font-style: italic;
 }

 .cards-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .service-card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 24px;
   border-radius: 20px;
   background: #fff;
   border: 1px solid #efe6da;
 }

 .service-card .price {
   font-weight: 700;
   color: var(--leaf);
 }

 .media-strip {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .media-strip img {
   border-radius: 18px;
 }

 .cta-banner {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 24px;
   border-radius: 28px;
   background: var(--leaf);
   color: #fff;
 }

 .cta-banner a {
   color: #fff;
   font-weight: 600;
   text-decoration: underline;
 }

 .form-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   padding: 26px;
   border-radius: 24px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   width: min(520px, 100%);
 }

 .form-panel label {
   font-weight: 600;
   font-size: 0.95rem;
 }

 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   border: 1px solid #d9d2c8;
   border-radius: 14px;
   padding: 10px 14px;
   font-size: 1rem;
 }

 .form-panel button {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }

 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   text-decoration: underline;
 }

 .footer {
   background: #13110e;
   color: #e9e4dc;
   padding: 50px 8vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .footer a {
   color: #e9e4dc;
 }

 .legal-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }

 .sticky-cta {
   position: sticky;
   bottom: 12px;
   margin: 20px 8vw 40px;
   background: #fff;
   border: 1px solid #e1d6c8;
   border-radius: 999px;
   padding: 12px 18px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
 }

 .sticky-cta a {
   color: var(--accent);
   font-weight: 600;
 }

 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid #e7ded2;
   border-radius: 18px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
   z-index: 20;
 }

 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .cookie-actions button {
   border-radius: 999px;
   border: 1px solid var(--accent);
   padding: 8px 18px;
   background: transparent;
   cursor: pointer;
   font-weight: 600;
 }

 .cookie-actions .accept {
   background: var(--accent);
   color: #fff;
 }

 .thanks-box {
   background: var(--cream);
   padding: 30px;
   border-radius: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .contact-stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .contact-card {
   background: #fff;
   border-radius: 20px;
   padding: 20px;
   border: 1px solid #efe6da;
 }

 @media (min-width: 880px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }

   .hero-content {
     max-width: 50%;
   }

   .hero-media {
     width: 50%;
   }

   .offset-row {
     flex-direction: row;
     align-items: flex-start;
   }

   .cards-row {
     flex-direction: row;
     flex-wrap: wrap;
   }

   .service-card {
     flex: 1 1 260px;
   }

   .media-strip {
     flex-direction: row;
   }

   .contact-stack {
     flex-direction: row;
   }
 }
