 :root {
   color-scheme: light;
   --bg: #f7f4ef;
   --ink: #1f2a1e;
   --muted: #5c6b5e;
   --accent: #2f6f3e;
   --accent-soft: #d9eadb;
   --sand: #efe6d8;
   --stone: #e6ece7;
   --shadow: 0 18px 40px rgba(22, 36, 25, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 270px;
   padding: 28px 22px;
   background: #f0efe9;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .brand {
   font-size: 1.4rem;
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: uppercase;
 }
 
 .ad-disclosure {
   font-size: 0.85rem;
   color: var(--muted);
   padding: 10px 12px;
   background: var(--stone);
   border-radius: 10px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   padding: 8px 10px;
   border-radius: 8px;
   background: #ffffff;
   box-shadow: 0 2px 8px rgba(22, 36, 25, 0.08);
 }
 
 .content {
   flex: 1;
   padding: 32px 40px 120px;
   display: flex;
   flex-direction: column;
   gap: 40px;
 }
 
 .hero {
   display: flex;
   gap: 30px;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-text h1 {
   font-size: 2.6rem;
   line-height: 1.1;
   margin: 0;
 }
 
 .hero-text p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
   border: none;
 }
 
 .button.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   display: flex;
   gap: 26px;
   align-items: center;
   background: #ffffff;
   padding: 30px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .section.scenic {
   background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   position: relative;
 }
 
 .section.scenic::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(25, 45, 29, 0.55);
   border-radius: 24px;
 }
 
 .section.scenic > * {
   position: relative;
 }
 
 .section.compact {
   align-items: stretch;
 }
 
 .section .text {
   flex: 1;
 }
 
 .section h2,
 .section h3 {
   margin-top: 0;
 }
 
 .img-frame {
   flex: 1;
   min-height: 220px;
   border-radius: 18px;
   overflow: hidden;
   background-color: #dce6d8;
   box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
 }
 
 .img-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .offset {
   margin-left: -40px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 20px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 26px rgba(22, 36, 25, 0.12);
 }
 
 .card .price {
   font-size: 1.2rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .service-option {
   flex: 1 1 220px;
   display: flex;
 }
 
 .service-option input {
   display: none;
 }
 
 .service-label {
   background: #fff;
   border-radius: 18px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   width: 100%;
   cursor: pointer;
   border: 1px solid transparent;
 }
 
 .service-option input:checked + .service-label {
   border-color: var(--accent);
   box-shadow: 0 10px 20px rgba(47, 111, 62, 0.18);
 }
 
 .form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form label {
   font-weight: 600;
 }
 
 .form input,
 .form textarea,
 .form select {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #ccd6c6;
   font-size: 1rem;
 }
 
 .form button {
   cursor: pointer;
 }
 
 .inline-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 16px 30px rgba(47, 111, 62, 0.3);
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 26px;
   border-radius: 20px;
   background: #ffffff;
 }
 
 .footer small {
   color: var(--muted);
 }
 
 .legal-links {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   max-width: 360px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 10;
 }
 
 .banner-actions {
   display: flex;
   gap: 12px;
 }
 
 .banner button {
   padding: 8px 12px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: #fff;
   color: var(--accent);
   font-weight: 600;
 }
 
 .banner button.accept {
   background: var(--accent);
   color: #fff;
 }
 
 .contact-grid {
   display: flex;
   gap: 26px;
   flex-wrap: wrap;
 }
 
 .contact-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
 }
 
 .note {
   padding: 14px 16px;
   background: var(--accent-soft);
   border-radius: 14px;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: column;
   }
 
   .content {
     padding: 24px 20px 120px;
   }
 
   .hero,
   .section {
     flex-direction: column;
   }
 
   .offset {
     margin-left: 0;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
