 :root {
   color-scheme: light;
   --ink: #1c1f1b;
   --muted: #5c6259;
   --paper: #f7f4ef;
   --stone: #e6ebe1;
   --leaf: #3c5a3f;
   --river: #2f4d56;
   --sun: #f2c14e;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 22px 8vw 18px;
   border-bottom: 1px solid #d8d2c8;
   background: #fbf9f6;
 }
 
 .nav-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   justify-content: space-between;
 }
 
 .brand {
   font-size: 1.4rem;
   letter-spacing: 0.12rem;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--stone);
 }
 
 .ad-disclosure {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 32px;
   padding: 46px 8vw;
 }
 
 .hero-split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-copy h1 {
   font-size: 2.6rem;
   line-height: 1.15;
 }
 
 .hero-copy p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-media {
   flex: 1 1 320px;
   background: #d8e2d1;
   padding: 16px;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
   min-height: 320px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--ink);
   background: var(--leaf);
   color: #fff;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--ink);
 }
 
 .section {
   padding: 52px 8vw;
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .section.light {
   background: #fff;
 }
 
 .section.stone {
   background: var(--stone);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .section-header h2 {
   font-size: 2rem;
 }
 
 .magazine-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 26px;
 }
 
 .magazine-columns .column {
   flex: 1 1 260px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .image-card {
   background: #dfe7d8;
   padding: 14px;
 }
 
 .image-card img {
   width: 100%;
   height: 260px;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border: 1px solid #d2d8cf;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-card .price {
   font-weight: 600;
   color: var(--river);
 }
 
 .service-card .button {
   align-self: flex-start;
 }
 
 .form-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background: #fff;
   border: 1px solid #d3d8cf;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #c6cbc2;
   font-size: 0.95rem;
 }
 
 .form-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .footer {
   margin-top: auto;
   padding: 30px 8vw 36px;
   background: #151814;
   color: #f5f3ee;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .footer small {
   color: #b9beb2;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 0;
   background: var(--river);
   color: #fff;
   padding: 16px 8vw;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .sticky-cta a.button {
   background: #fff;
   color: var(--river);
 }
 
 .cookie-banner {
   position: fixed;
   left: 50%;
   bottom: 16px;
   transform: translateX(-50%);
   background: #fff;
   border: 1px solid #d2d6cd;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   max-width: 520px;
   width: calc(100% - 32px);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-actions .button {
   background: var(--ink);
 }
 
 .cookie-actions .button.secondary {
   background: transparent;
   color: var(--ink);
 }
 
 .legal-page {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   font-size: 1rem;
 }
 
 .inline-link {
   color: var(--river);
   border-bottom: 1px solid var(--river);
 }
 
 @media (max-width: 860px) {
   .hero-copy h1 {
     font-size: 2.1rem;
   }
 
   .sticky-cta {
     position: static;
   }
 }
