 :root {
   color-scheme: light;
   --cream: #f6f1ea;
   --sand: #e7ddd2;
   --charcoal: #2f2a26;
   --sage: #8a9a8f;
   --clay: #b46b4d;
   --sky: #c7d7e5;
   --white: #ffffff;
   --shadow: 0 18px 40px rgba(47, 42, 38, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--cream);
   color: var(--charcoal);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 28px 6%;
 }
 
 .nav__brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav__menu {
   display: flex;
   gap: 22px;
   font-size: 0.95rem;
 }
 
 .nav__cta {
   padding: 10px 18px;
   border: 1px solid var(--charcoal);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 20px 6% 60px;
 }
 
 .hero__content {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero__title {
   font-size: clamp(2.3rem, 3.2vw, 3.8rem);
   line-height: 1.1;
 }
 
 .hero__panel {
   flex: 1 1 320px;
   background: var(--white);
   border-radius: 32px;
   padding: 26px;
   box-shadow: var(--shadow);
   transform: translateY(16px);
 }
 
 .hero__panel img {
   border-radius: 24px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 6px 14px;
   background: var(--sand);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .cta-primary {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 14px 26px;
   background: var(--charcoal);
   color: var(--white);
   border-radius: 999px;
   font-weight: 600;
 }
 
 .cta-secondary {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border: 1px solid var(--charcoal);
   border-radius: 999px;
   font-weight: 600;
 }
 
 .section {
   padding: 64px 6%;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section--offset {
   background: var(--white);
   border-radius: 40px;
   box-shadow: var(--shadow);
   margin: 0 6% 80px;
   padding: 48px;
   transform: translateY(-30px);
 }
 
 .section__split {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .section__split--reverse {
   flex-direction: row-reverse;
 }
 
 .section__card {
   flex: 1 1 240px;
   background: var(--sand);
   border-radius: 28px;
   padding: 24px;
 }
 
 .section__card--light {
   background: var(--sky);
 }
 
 .section__card--tall {
   min-height: 220px;
 }
 
 .stacked {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stagger {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .stagger__item {
   flex: 1 1 200px;
   background: var(--white);
   border-radius: 22px;
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .stagger__item:nth-child(2) {
   transform: translateY(20px);
 }
 
 .stagger__item:nth-child(3) {
   transform: translateY(-12px);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--white);
   border-radius: 24px;
   padding: 20px;
   box-shadow: var(--shadow);
   position: relative;
 }
 
 .service-card img {
   border-radius: 18px;
   margin-bottom: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--clay);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--white);
   border-radius: 28px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .form-shell label {
   font-weight: 600;
 }
 
 .form-shell input,
 .form-shell select,
 .form-shell textarea {
   width: 100%;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--sand);
   font-size: 1rem;
 }
 
 .form-shell button {
   border: none;
   cursor: pointer;
 }
 
 .inline-link {
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--clay);
   color: var(--white);
   padding: 12px 20px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-weight: 600;
   z-index: 20;
 }
 
 .footer {
   padding: 40px 6% 60px;
   background: var(--charcoal);
   color: var(--white);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: var(--white);
 }
 
 .footer__links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--white);
   padding: 16px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: none;
   max-width: 320px;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .taglist {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 6px 12px;
   background: var(--sand);
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .page-title {
   font-size: clamp(2rem, 3vw, 3rem);
 }
 
 .split-note {
   background: var(--sage);
   color: var(--white);
   border-radius: 20px;
   padding: 20px;
 }
 
 @media (min-width: 900px) {
   .hero__panel {
     transform: translateY(36px);
   }
 
   .section--offset {
     margin: 0 12% 90px;
   }
 }
