 :root {
   color-scheme: light;
   --ink: #1b1d1f;
   --muted: #5b6470;
   --accent: #1f6f8b;
   --accent-2: #3b4c66;
   --soft: #f2f5f7;
   --sand: #f7f1ea;
   --sky: #eaf2f7;
   --leaf: #edf5f0;
   --border: #d8dee6;
   --card: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .wrap {
   width: min(1140px, 92%);
   margin: 0 auto;
 }
 
 .topbar {
   padding: 20px 0;
 }
 
 .topbar .wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }
 
 .advert-label {
   font-size: 0.85rem;
   color: var(--muted);
   max-width: 260px;
   text-align: right;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: center;
   justify-content: space-between;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text,
 .split .media {
   flex: 1 1 50%;
 }
 
 .section {
   padding: 68px 0;
 }
 
 .section.compact {
   padding: 44px 0;
 }
 
 .section.soft {
   background: var(--soft);
 }
 
 .section.sky {
   background: var(--sky);
 }
 
 .section.leaf {
   background: var(--leaf);
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .panel {
   background: var(--card);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 28px;
 }
 
 .hero {
   position: relative;
   color: #ffffff;
 }
 
 .hero .wrap {
   position: relative;
   z-index: 2;
 }
 
 .hero-bg {
   position: absolute;
   inset: 0;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   background-color: #2e3b4a;
   z-index: 1;
 }
 
 .hero-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(120deg, rgba(17, 28, 45, 0.88), rgba(17, 28, 45, 0.42));
   z-index: 1;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   margin: 0 0 18px;
 }
 
 .hero p {
   max-width: 520px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 24px;
 }
 
 .button {
   background: var(--accent);
   color: #ffffff;
   padding: 12px 22px;
   border-radius: 24px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   border: none;
   cursor: pointer;
 }
 
 .button.alt {
   background: #ffffff;
   color: var(--accent);
   border: 1px solid #ffffff;
 }
 
 .button.outline {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .button:focus-visible {
   outline: 3px solid rgba(31, 111, 139, 0.35);
   outline-offset: 2px;
 }
 
 .card-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 18px;
   border: 1px solid var(--border);
   overflow: hidden;
   display: flex;
   flex-direction: column;
   min-width: 220px;
 }
 
 .card-body {
   padding: 18px;
 }
 
 .card h3 {
   margin-top: 0;
   margin-bottom: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-2);
   margin-top: 10px;
 }
 
 .media-frame {
   background-color: #cfd6dd;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .media-frame img {
   width: 100%;
   height: 100%;
 }
 
 .media-frame.tall {
   min-height: 340px;
 }
 
 .media-frame.medium {
   min-height: 260px;
 }
 
 .media-frame.short {
   min-height: 200px;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .service-select {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .service-select button {
   background: var(--card);
   border: 1px solid var(--border);
   color: var(--ink);
   padding: 10px 16px;
   border-radius: 20px;
   cursor: pointer;
 }
 
 .service-select button.active {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
   display: block;
   margin-bottom: 6px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--border);
   font-size: 1rem;
 }
 
 .form-status {
   color: var(--accent-2);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 20;
 }
 
 .sticky-cta a {
   background: var(--accent-2);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 24px;
   display: inline-flex;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   padding: 18px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid var(--border);
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-banner.visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .footer {
   padding: 32px 0 44px;
   background: #111821;
   color: #d4d7dc;
 }
 
 .footer .wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: #d4d7dc;
 }
 
 .legal-list {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }
 
 .note {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .page-hero {
   padding: 54px 0;
 }
 
 .page-hero h1 {
   margin-top: 0;
 }
 
 .simple-image {
   width: 100%;
   height: 280px;
 }
 
 .references a {
   color: var(--accent);
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .advert-label {
     text-align: left;
     max-width: none;
   }
 }
 
 .bg-home-hero {
   background-image: url("https://images.unsplash.com/photo-1758523670991-ee93bc48d81d?w=1400&q=80");
 }
 
 .bg-area-band {
   background-image: url("https://images.unsplash.com/photo-1748189286412-75b51c19278b?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   background-color: #2d3644;
   color: #ffffff;
 }
