 :root {
   color-scheme: light;
   --ink: #1c1a17;
   --muted: #5f5a54;
   --sand: #f3eee7;
   --clay: #d9c7b4;
   --stone: #ede4d8;
   --accent: #6f4c3e;
   --accent-dark: #4c332a;
   --leaf: #7c8a76;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Georgia", "Times New Roman", serif;
   color: var(--ink);
   background: #fcfaf7;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 24px 6vw 12px;
   gap: 24px;
 }
 
 .nav-brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav-links button {
   background: none;
   border: none;
   padding: 0;
   font: inherit;
   cursor: pointer;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 240px;
   line-height: 1.3;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 0 6vw;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1 1 340px;
   padding: 24px 32px;
   background: var(--sand);
   border-radius: 12px;
   align-self: center;
 }
 
 .hero-text h1 {
   margin-top: 0;
   font-size: 2.8rem;
 }
 
 .hero-text p {
   font-size: 1.1rem;
   line-height: 1.6;
 }
 
 .hero-media {
   flex: 1 1 360px;
   min-height: 340px;
   border-radius: 18px;
   overflow: hidden;
   background: var(--clay);
   transform: translateY(16px);
 }
 
 .offset-section {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 0 6vw;
   align-items: flex-start;
 }
 
 .offset-section.reverse {
   flex-direction: row-reverse;
 }
 
 .offset-panel {
   flex: 1 1 320px;
   padding: 24px 28px;
   background: #ffffff;
   border: 1px solid var(--stone);
   border-radius: 16px;
   box-shadow: 0 24px 36px rgba(0, 0, 0, 0.05);
   transform: translateY(-10px);
 }
 
 .offset-media {
   flex: 1 1 360px;
   min-height: 280px;
   border-radius: 16px;
   overflow: hidden;
   background: var(--clay);
 }
 
 .split-highlight {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 20px 6vw;
   align-items: stretch;
 }
 
 .highlight-block {
   flex: 1 1 260px;
   padding: 20px 22px;
   background: var(--stone);
   border-radius: 12px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 0 6vw;
 }
 
 .card {
   flex: 1 1 240px;
   min-width: 240px;
   background: #ffffff;
   border-radius: 14px;
   overflow: hidden;
   border: 1px solid var(--stone);
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 18px 20px 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-media {
   height: 180px;
   background: var(--clay);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   padding: 0 6vw;
 }
 
 .cta-button {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .cta-outline {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
   padding: 12px 20px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .sticky-cta {
   position: sticky;
   top: 24px;
   align-self: flex-start;
   background: var(--accent-dark);
   color: #fff;
   padding: 18px 20px;
   border-radius: 14px;
   max-width: 240px;
 }
 
 .sticky-cta button {
   margin-top: 12px;
   width: 100%;
 }
 
 .form-section {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 0 6vw 48px;
   align-items: flex-start;
 }
 
 .form-panel {
   flex: 1 1 340px;
   background: var(--sand);
   padding: 24px 28px;
   border-radius: 16px;
 }
 
 .form-panel form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .form-panel label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--clay);
   font-family: inherit;
 }
 
 .form-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .footer {
   background: var(--stone);
   padding: 32px 6vw 36px;
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   font-size: 0.9rem;
 }
 
 .footer-column {
   flex: 1 1 220px;
 }
 
 .legal-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .banner {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #fff;
   border: 1px solid var(--clay);
   border-radius: 12px;
   padding: 16px 18px;
   max-width: 320px;
   box-shadow: 0 18px 26px rgba(0, 0, 0, 0.08);
   z-index: 999;
 }
 
 .banner-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }
 
 .page-hero {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 0 6vw;
 }
 
 .page-hero .hero-text {
   transform: translateX(12px);
 }
 
 .page-hero .hero-media {
   transform: translateY(-6px);
 }
 
 .contact-details {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 1rem;
 }
 
 .inline-link {
   color: var(--accent);
   border-bottom: 1px solid transparent;
 }
 
 .inline-link:hover {
   border-color: var(--accent);
 }
 
 @media (max-width: 880px) {
   .sticky-cta {
     position: static;
     max-width: none;
   }
 
   .nav {
     flex-direction: column;
   }
 }
