 :root {
   color-scheme: light;
   --ink: #1b1b1b;
   --muted: #5f6368;
   --accent: #2b6f5a;
   --accent-soft: #e0f2ea;
   --sun: #f6b65b;
   --paper: #f7f5f0;
   --sand: #fff1d6;
   --line: #ded8cd;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   width: min(1140px, 92vw);
   margin: 0 auto;
   padding: 2rem 0 4rem;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1.5rem 0;
 }
 
 .nav-links {
   display: flex;
   gap: 1.4rem;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   border-bottom: 2px solid transparent;
   padding-bottom: 0.2rem;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 2rem 0 4rem;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 12% -8% auto auto;
   width: 45%;
   height: 55%;
   background: var(--accent-soft);
   z-index: -1;
   border-radius: 2.5rem;
   transform: rotate(-2deg);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .hero-title {
   font-size: clamp(2.4rem, 4vw, 3.5rem);
   line-height: 1.1;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .btn {
   padding: 0.8rem 1.6rem;
   border-radius: 999px;
   background: var(--accent);
   color: white;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
 }
 
 .btn.alt {
   background: white;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.soft {
   background: white;
   border-radius: 2rem;
   padding: 3.5rem 2.5rem;
   margin: 2rem 0;
 }
 
 .section-title {
   font-size: clamp(1.6rem, 2.6vw, 2.4rem);
   margin: 0 0 1rem;
 }
 
 .kicker {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .offset-card {
   background: var(--sand);
   border-radius: 1.5rem;
   padding: 2rem;
   border: 1px solid var(--line);
   position: relative;
 }
 
 .offset-card.shift {
   transform: translateX(8%);
 }
 
 .offset-card.back {
   background: white;
   transform: translateX(-6%);
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-card {
   background: white;
   border-radius: 1.2rem;
   padding: 1.6rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .service-card strong {
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .pill {
   padding: 0.35rem 0.9rem;
   border-radius: 999px;
   background: var(--accent-soft);
   font-size: 0.85rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .timeline-item {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   padding-left: 1rem;
   border-left: 2px solid var(--accent);
 }
 
 .quote {
   font-style: italic;
   padding: 1.6rem;
   border-radius: 1.2rem;
   background: var(--accent-soft);
 }
 
 .form-panel {
   background: white;
   border-radius: 1.6rem;
   padding: 2rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 input,
 select,
 textarea {
   padding: 0.8rem 1rem;
   border-radius: 0.8rem;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 1rem;
   align-self: flex-start;
   background: var(--accent);
   color: white;
   padding: 1rem 1.4rem;
   border-radius: 1rem;
   margin-top: 1.5rem;
 }
 
 .footer {
   border-top: 1px solid var(--line);
   padding: 2.5rem 0;
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
   font-size: 0.95rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 1rem 1rem 1rem;
   background: white;
   border-radius: 1rem;
   padding: 1rem 1.2rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .cookie-actions button {
   border-radius: 999px;
   border: 1px solid var(--accent);
   padding: 0.5rem 1rem;
   font-weight: 600;
   background: white;
   color: var(--accent);
 }
 
 .cookie-actions button.primary {
   background: var(--accent);
   color: white;
 }
 
 .grid-list {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .two-col {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .callout {
   background: var(--sand);
   padding: 1.8rem;
   border-radius: 1.4rem;
 }
 
 .image-frame {
   border-radius: 1.8rem;
   overflow: hidden;
   border: 1px solid var(--line);
 }
 
 @media (min-width: 860px) {
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
   }
 
   .two-col {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .service-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     width: calc(50% - 0.6rem);
   }
 
   .grid-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid-list > div {
     width: calc(50% - 0.7rem);
   }
 }
