 :root {
   --bg: #f6f4f1;
   --ink: #1f1f1f;
   --muted: #5a5a5a;
   --accent: #2e5bff;
   --accent-dark: #223bb3;
   --sand: #efe7dd;
   --stone: #e2e2e2;
   --pine: #1f3a32;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .top-nav {
   padding: 22px 0;
   background: #ffffff;
 }
 
 .top-nav .nav-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 240px;
   text-align: right;
 }
 
 .split-section {
   display: flex;
   gap: 36px;
   padding: 56px 0;
   align-items: stretch;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-col {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .hero-visual {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   min-height: 380px;
   border-radius: 18px;
   background-color: #d8d2cb;
 }
 
 .section-title {
   font-size: 2.2rem;
   margin: 0;
 }
 
 .lead {
   font-size: 1.15rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .btn.secondary {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .note {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .highlight-panel {
   background: var(--sand);
   border-radius: 18px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .image-frame {
   border-radius: 16px;
   overflow: hidden;
   background-color: #d4d0c8;
   aspect-ratio: 4 / 3;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-width: 230px;
 }
 
 .service-card .image-frame {
   aspect-ratio: 3 / 2;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .story-band {
   background: #0f1f1a;
   color: #f8f4ee;
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 20px;
   padding: 42px;
   margin: 0 auto;
   background-color: #27312e;
 }
 
 .story-band .btn {
   background: #f8f4ee;
   color: #0f1f1a;
 }
 
 .form-section {
   background: #ffffff;
   border-radius: 18px;
   padding: 32px;
 }
 
 .form-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .form-field {
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .form-field input,
 .form-field select,
 .form-field textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #d5d5d5;
   font-size: 1rem;
 }
 
 .form-field textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .split-quote {
   background: var(--pine);
   color: #f1f3ef;
   border-radius: 18px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer {
   padding: 34px 0;
   background: #ffffff;
   margin-top: auto;
 }
 
 .footer .footer-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-between;
   font-size: 0.95rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border-radius: 14px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   max-width: 320px;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions .btn {
   flex: 1;
   padding: 8px 10px;
 }
 
 .page-hero {
   background: var(--stone);
   padding: 42px 0;
 }
 
 .page-hero .section-title {
   font-size: 2rem;
 }
 
 .two-column {
   display: flex;
   gap: 28px;
   padding: 46px 0;
 }
 
 .two-column .split-col {
   gap: 16px;
 }
 
 @media (max-width: 900px) {
   .split-section,
   .split-section.reverse,
   .two-column {
     flex-direction: column;
   }
 
   .ad-label {
     text-align: left;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
