 :root {
   color-scheme: light;
   --ink: #1d1b1a;
   --muted: #5c5a57;
   --cream: #f8f2ea;
   --sand: #efe4d7;
   --leaf: #2f6f5f;
   --sun: #f6b34c;
   --stone: #d8c8b7;
   --line: rgba(29, 27, 26, 0.1);
   --shadow: 0 16px 40px rgba(24, 18, 12, 0.12);
   font-size: 16px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--cream);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page-shell {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   background: #fff;
   border-right: 1px solid var(--line);
   padding: 32px 24px;
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand span {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.7rem;
   color: var(--muted);
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 14px;
   font-weight: 600;
 }
 
 .nav a {
   padding: 8px 12px;
   border-radius: 999px;
   background: transparent;
   transition: background 0.2s ease;
 }
 
 .nav a:hover {
   background: var(--sand);
 }
 
 .sidebar-cta {
   margin-top: auto;
   background: var(--leaf);
   color: #fff;
   padding: 14px 18px;
   border-radius: 16px;
   text-align: center;
   font-weight: 600;
 }
 
 .main-content {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 40px 6vw 120px;
 }
 
 .hero {
   display: flex;
   gap: 32px;
   align-items: stretch;
   background: #fff;
   border-radius: 28px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .hero-copy {
   flex: 1.1;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-copy h1 {
   font-size: 2.4rem;
   line-height: 1.2;
 }
 
 .hero-copy p {
   color: var(--muted);
 }
 
 .hero-media {
   flex: 0.9;
   background: var(--sand);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .button.primary {
   background: var(--leaf);
   color: #fff;
   box-shadow: 0 12px 24px rgba(47, 111, 95, 0.24);
 }
 
 .button.secondary {
   background: var(--sun);
   color: #3a2a16;
 }
 
 .button.ghost {
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .button:hover {
   transform: translateY(-2px);
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split {
   display: flex;
   gap: 24px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .panel {
   flex: 1;
   background: #fff;
   border-radius: 24px;
   padding: 24px;
   box-shadow: var(--shadow);
 }
 
 .note-card {
   background: var(--sand);
   border-radius: 22px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 24px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   border: 1px solid var(--line);
 }
 
 .service-card strong {
   font-size: 1.1rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--leaf);
 }
 
 .service-card button {
   margin-top: auto;
 }
 
 .inline-cta {
   color: var(--leaf);
   font-weight: 700;
   text-decoration: underline;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .timeline-item {
   display: flex;
   gap: 16px;
   align-items: center;
   padding: 16px;
   border-radius: 18px;
   background: #fff;
 }
 
 .timeline-item span {
   font-weight: 700;
   color: var(--leaf);
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 28px;
   padding: 28px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-grid label {
   font-weight: 600;
 }
 
 .form-grid input,
 .form-grid select,
 .form-grid textarea {
   padding: 12px 14px;
   border-radius: 14px;
   border: 1px solid var(--line);
   font-family: inherit;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 5;
   background: var(--sun);
   color: #3a2a16;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: var(--shadow);
 }
 
 .footer {
   border-top: 1px solid var(--line);
   padding-top: 24px;
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   color: var(--muted);
 }
 
 .footer a {
   color: var(--muted);
   text-decoration: underline;
 }
 
 .banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   padding: 16px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   width: 280px;
   z-index: 6;
 }
 
 .banner.visible {
   display: flex;
 }
 
 .banner-actions {
   display: flex;
   gap: 10px;
 }
 
 .subtle {
   color: var(--muted);
 }
 
 .callout {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: #fff;
   padding: 24px;
   border-radius: 22px;
   border: 1px solid var(--line);
 }
 
 .image-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .image-stack img {
   border-radius: 16px;
 }
 
 .highlight {
   background: var(--leaf);
   color: #fff;
   padding: 6px 10px;
   border-radius: 8px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 0.85rem;
 }
 
 .mini-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 0.95rem;
 }
 
 .two-column {
   display: flex;
   gap: 24px;
   align-items: stretch;
 }
 
 .two-column .panel {
   flex: 1;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .contact-list strong {
   font-size: 1rem;
 }
 
 @media (max-width: 980px) {
   .page-shell {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     align-items: center;
     flex-wrap: wrap;
     justify-content: space-between;
   }
 
   .nav {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .hero,
   .split,
   .two-column {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
