 :root {
   color-scheme: light;
   --bg: #f6f2ed;
   --ink: #1c1c1c;
   --muted: #5b5b5b;
   --accent: #2f6b5a;
   --accent-dark: #214c40;
   --paper: #ffffff;
   --sand: #efe7dd;
   --clay: #d8cfc4;
   --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent);
 }
 
 button {
   font-family: inherit;
 }
 
 .page {
   width: min(1200px, 92vw);
   margin: 0 auto;
   padding: 2.5rem 0 4rem;
 }
 
 .site-header {
   background: var(--paper);
   border-bottom: 1px solid var(--clay);
 }
 
 .header-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: min(1200px, 92vw);
   margin: 0 auto;
   padding: 1.5rem 0 0.5rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--accent-dark);
   background: var(--sand);
   padding: 0.3rem 0.7rem;
   border-radius: 999px;
 }
 
 .site-nav {
   display: flex;
   gap: 1.5rem;
   flex-wrap: wrap;
   width: min(1200px, 92vw);
   margin: 0 auto;
   padding: 0.5rem 0 1.5rem;
   font-size: 0.95rem;
 }
 
 .site-nav a {
   padding-bottom: 0.3rem;
   border-bottom: 2px solid transparent;
 }
 
 .site-nav a:hover,
 .site-nav a:focus {
   border-color: var(--accent);
 }
 
 .magazine-row {
   display: flex;
   gap: 2rem;
   flex-wrap: wrap;
 }
 
 .col-60 {
   flex: 1 1 60%;
 }
 
 .col-40 {
   flex: 1 1 35%;
 }
 
 .col-70 {
   flex: 1 1 70%;
 }
 
 .col-30 {
   flex: 1 1 25%;
 }
 
 .hero {
   background: var(--paper);
   padding: 2rem;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 .hero h1 {
   font-size: clamp(2.1rem, 3vw, 3rem);
   margin-bottom: 1rem;
 }
 
 .hero p {
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   margin-top: 1.5rem;
 }
 
 .btn-primary,
 .btn-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.8rem 1.6rem;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   border: 2px solid var(--accent);
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-primary:hover,
 .btn-primary:focus {
   background: var(--accent-dark);
   border-color: var(--accent-dark);
   color: #fff;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   background: var(--accent);
   color: #fff;
 }
 
 .section {
   margin-top: 3.5rem;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 1rem;
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .media-frame {
   background: var(--clay);
   border-radius: 16px;
   overflow: hidden;
 }
 
 .media-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--paper);
   border-radius: 16px;
   padding: 1.5rem;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .note {
   background: var(--sand);
   padding: 1.2rem;
   border-radius: 12px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 1.5rem;
   background: var(--paper);
   padding: 1.5rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .inline-list {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .quote {
   border-left: 3px solid var(--accent);
   padding-left: 1rem;
   color: var(--muted);
 }
 
 .service-table {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-row {
   display: flex;
   justify-content: space-between;
   gap: 1rem;
   flex-wrap: wrap;
   padding-bottom: 1rem;
   border-bottom: 1px solid var(--clay);
 }
 
 .form-wrap {
   background: var(--paper);
   padding: 2rem;
   border-radius: 20px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.8rem 1rem;
   border-radius: 12px;
   border: 1px solid var(--clay);
   font-size: 1rem;
 }
 
 .form-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .footer {
   background: var(--paper);
   padding: 3rem 0;
   margin-top: 3rem;
   border-top: 1px solid var(--clay);
 }
 
 .footer-grid {
   display: flex;
   gap: 2rem;
   flex-wrap: wrap;
   width: min(1200px, 92vw);
   margin: 0 auto;
 }
 
 .footer a:hover,
 .footer a:focus {
   color: var(--accent);
 }
 
 .legal {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   right: 1.5rem;
   max-width: 360px;
   background: var(--paper);
   padding: 1.2rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
   z-index: 20;
  display: none !important;
 }
 
 .cookie-banner.is-hidden {
   display: none !important;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.8rem;
   margin-top: 0.8rem;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--sand);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .tagline {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .hero-image {
   min-height: 360px;
   border-radius: 20px;
   background-size: cover;
   background-position: center;
 }

 .hero-home {
   background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
 }

 .hero-services {
   background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
 }

 .hero-contact {
   background-image: url("https://images.unsplash.com/photo-1517685352821-92cf88aee5a5?w=1400&q=80");
 }
 
 .background-block {
   border-radius: 20px;
   padding: 2rem;
   background-size: cover;
   background-position: center;
   color: #fff;
 }

 .background-story {
   background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
 }

 .background-method {
   background-image: url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1400&q=80");
 }
 
 .background-block .btn-outline {
   border-color: #fff;
   color: #fff;
 }
 
 .background-block .btn-outline:hover,
 .background-block .btn-outline:focus {
   background: rgba(255, 255, 255, 0.2);
 }
 
 .notice {
   background: var(--sand);
   padding: 1rem 1.5rem;
   border-radius: 12px;
 }
 
 .no-break {
   white-space: nowrap;
 }


[hidden] {
  display: none !important;
}