 :root {
   --ink: #1f2a32;
   --muted: #5b6a74;
   --accent: #2b6cb0;
   --accent-dark: #1d4f82;
   --warm: #f4efe9;
   --mist: #eef3f6;
   --sand: #f7f2ea;
   --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background-color: #ffffff;
   line-height: 1.6;
 }
 
 img {
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 select:focus,
 input:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .top-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6vw;
   background-color: #ffffff;
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-group {
   display: flex;
   align-items: center;
   gap: 24px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--accent);
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 260px;
   text-align: right;
 }
 
 .nav-toggle {
   display: none;
   border: 1px solid var(--ink);
   padding: 8px 14px;
   background-color: #ffffff;
   cursor: pointer;
 }
 
 .hero {
   position: relative;
   color: #ffffff;
   padding: 90px 6vw 110px;
   background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(16, 26, 34, 0.52);
 }
 
 .hero-content {
   position: relative;
   display: flex;
   flex-wrap: wrap;
   gap: 40px;
   align-items: flex-end;
   max-width: 1100px;
 }
 
 .hero-copy {
   flex: 1 1 360px;
 }
 
 .hero-card {
   flex: 1 1 320px;
   background-color: rgba(255, 255, 255, 0.12);
   padding: 24px;
   border-radius: 18px;
   backdrop-filter: blur(6px);
 }
 
 .hero h1 {
   font-size: 2.8rem;
   margin: 0 0 18px;
 }
 
 .hero p {
   margin: 0 0 18px;
   color: #f4f8fb;
 }
 
 .cta-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: none;
   padding: 12px 22px;
   border-radius: 999px;
   background-color: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cta-button:hover,
 .cta-button:focus {
   background-color: var(--accent-dark);
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .section--mist {
   background-color: var(--mist);
 }
 
 .section--sand {
   background-color: var(--sand);
 }
 
 .section--offset {
   display: flex;
   gap: 40px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .offset-panel {
   flex: 1 1 320px;
 }
 
 .offset-panel--lift {
   margin-top: -40px;
 }
 
 .image-frame {
   background-color: #dfe5ea;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 220px;
   min-width: 220px;
   background-color: #ffffff;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 12px 28px rgba(31, 42, 50, 0.12);
 }
 
 .service-card .content {
   padding: 18px;
 }
 
 .service-card h3 {
   margin: 0 0 8px;
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .story-split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
 }
 
 .story-split .panel {
   flex: 1 1 320px;
 }
 
 .photo-band {
   background-image: url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #ffffff;
   position: relative;
 }
 
 .photo-band::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 28, 36, 0.6);
 }
 
 .photo-band .band-content {
   position: relative;
   max-width: 900px;
 }
 
 .pricing-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .pricing-item {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 12px;
   padding: 18px;
   border-radius: 14px;
   background-color: #ffffff;
   box-shadow: 0 10px 24px rgba(31, 42, 50, 0.08);
 }
 
 .pricing-item span {
   font-weight: 600;
 }
 
 .form-shell {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: flex-start;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background-color: #ffffff;
   padding: 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .form-panel label {
   display: block;
   font-weight: 600;
   margin-top: 12px;
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   width: 100%;
   padding: 10px 12px;
   margin-top: 6px;
   border-radius: 10px;
   border: 1px solid #c8d2db;
   font-size: 1rem;
 }
 
 .form-panel button {
   margin-top: 18px;
 }
 
 .inline-cta {
   font-weight: 600;
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 20;
   border-radius: 999px;
   padding: 12px 18px;
   border: none;
   background-color: var(--accent);
   color: #ffffff;
   font-weight: 600;
   cursor: pointer;
   box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background-color: var(--accent-dark);
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw;
   background-color: #0e1720;
   color: #d7dee6;
 }
 
 .footer a {
   color: #d7dee6;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer small {
   color: #93a2ae;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background-color: #ffffff;
   padding: 18px;
   border-radius: 14px;
   box-shadow: var(--shadow);
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .hidden {
   display: none;
 }
 
 .legal-block {
   max-width: 880px;
 }
 
 @media (max-width: 900px) {
   .nav-links {
     display: none;
     flex-direction: column;
     background-color: #ffffff;
     padding: 16px;
     border-radius: 12px;
     box-shadow: var(--shadow);
     position: absolute;
     right: 6vw;
     top: 70px;
   }
 
   .nav-links[data-open="true"] {
     display: flex;
   }
 
   .nav-toggle {
     display: inline-flex;
   }
 
   .hero {
     padding: 70px 6vw 90px;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
