 :root {
   --ink: #1b1b1b;
   --muted: #5e5e5e;
   --paper: #f7f5f2;
   --accent: #2f6f6d;
   --accent-soft: #dfe9e6;
   --sand: #efe8de;
   --stone: #d7d2c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .container {
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 24px;
 }
 
 header {
   padding: 28px 0 12px;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   background: var(--accent-soft);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   padding: 40px 0 64px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .hero-copy h1 {
   font-size: 2.6rem;
   margin: 0 0 16px;
 }
 
 .hero-copy p {
   font-size: 1.05rem;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-size: 1rem;
 }
 
 .button.secondary {
   background: var(--ink);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .section.light {
   background: #fff;
 }
 
 .section-title {
   font-size: 1.8rem;
   margin-bottom: 14px;
 }
 
 .muted {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .media-box {
   background: var(--stone);
   border-radius: 18px;
   overflow: hidden;
   height: 320px;
 }
 
 .hero-media,
 .page-hero-media {
   background-color: var(--stone);
   border-radius: 24px;
   min-height: 380px;
   background-size: cover;
   background-position: center;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .card-image {
   height: 180px;
   background: var(--accent-soft);
   border-radius: 14px;
   overflow: hidden;
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .form-card {
   background: #fff;
   border-radius: 22px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.95rem;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc8bc;
   font-size: 1rem;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.section-cta {
  margin-top: 20px;
}

 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 10;
 }
 
 .footer {
   padding: 40px 0 60px;
   background: #111;
   color: #e6e6e6;
 }
 
 .footer a {
   color: #e6e6e6;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
   max-width: 320px;
   display: none;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .page-hero {
   padding: 36px 0 46px;
 }
 
 .page-hero h1 {
   margin-bottom: 10px;
 }
 
 .notice {
   background: var(--accent-soft);
   padding: 14px 16px;
   border-radius: 12px;
 }
 
 .legal-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .legal-columns > div {
   flex: 1 1 260px;
 }
 
 .hero-media-home {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }
 
 .hero-media-about {
   background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
 }
 
 .hero-media-services {
   background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
 }
 
 .hero-media-contact {
   background-image: url("https://images.pexels.com/photos/16088032/pexels-photo-16088032.jpeg");
 }
