 :root {
   --ink: #0f1b22;
   --muted: #4a5b66;
   --bg: #f6f7f3;
   --panel: #ffffff;
   --accent: #1f6f5b;
   --accent-dark: #144b3e;
   --sand: #eef0ea;
   --steel: #dfe5e8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1180px, 92%);
   margin: 0 auto;
 }
 
 .top-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 0;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   border: 1px solid var(--steel);
   padding: 6px 10px;
   border-radius: 999px;
   background: #fff;
 }
 
 .section {
   padding: 64px 0;
   position: relative;
 }
 
 .section-title {
   font-size: 28px;
   margin: 0 0 18px;
 }
 
 .section p {
   color: var(--muted);
   line-height: 1.6;
 }
 
 .hero {
   min-height: 520px;
   display: flex;
   align-items: center;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
   max-width: 560px;
   background: rgba(255, 255, 255, 0.86);
   padding: 28px 32px;
   border-radius: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   gap: 8px;
 }
 
 .btn.secondary {
   background: var(--ink);
 }
 
 .btn.ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .asym {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .asym.reverse {
   flex-direction: row-reverse;
 }
 
 .image-frame {
   flex: 1 1 320px;
   min-width: 280px;
   background: var(--steel);
   padding: 12px;
   border-radius: 18px;
 }
 
 .text-block {
   flex: 1 1 320px;
   min-width: 260px;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--panel);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(15, 27, 34, 0.08);
 }
 
 .card.offset {
   transform: translateY(-16px);
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .price {
   font-size: 22px;
   font-weight: 700;
 }
 
 .split-band {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   align-items: stretch;
 }
 
 .band-panel {
   flex: 1 1 320px;
   background: rgba(255, 255, 255, 0.92);
   padding: 26px;
   border-radius: 16px;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--sand);
   font-size: 12px;
   color: var(--muted);
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1760347945449-5bb3aa4d30fa?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #d8e3e1;
 }
 
 .bg-coast {
   background-image: url("https://images.unsplash.com/photo-1775927974346-87b7b4e6d16d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #d6dde2;
 }
 
 .bg-services {
   background-image: url("https://images.unsplash.com/photo-1761588782119-bf6629a56056?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #cfd8dd;
 }
 
 .bg-soft {
   background: var(--sand);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   text-decoration: underline;
 }
 
 .form-shell {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background: var(--panel);
   padding: 24px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-panel label {
   font-size: 14px;
   color: var(--muted);
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--steel);
   font-size: 14px;
   font-family: inherit;
 }
 
 .form-panel button {
   border: none;
   cursor: pointer;
 }
 
 .footer {
   padding: 40px 0 80px;
   background: #0f1b22;
   color: #f2f4f5;
 }
 
 .footer a {
   color: #f2f4f5;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   font-size: 14px;
 }
 
 .disclaimer {
   font-size: 12px;
   color: #c6cbd0;
   margin-top: 14px;
   line-height: 1.5;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: var(--panel);
   border-radius: 999px;
   padding: 10px 16px;
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(15, 27, 34, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   bottom: 16px;
   background: #ffffff;
   border-radius: 14px;
   padding: 16px;
   box-shadow: 0 10px 30px rgba(15, 27, 34, 0.2);
   max-width: 320px;
   display: none;
   gap: 12px;
   flex-direction: column;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   flex: 1;
   border: none;
   border-radius: 999px;
   padding: 8px 12px;
   cursor: pointer;
   background: var(--accent);
   color: #fff;
 }
 
 .cookie-actions .reject {
   background: var(--ink);
 }
 
 .notice {
   font-size: 12px;
   color: var(--muted);
 }
 
 .legal-block {
   background: var(--panel);
   padding: 24px;
   border-radius: 16px;
   line-height: 1.7;
 }
 
 .contact-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   align-items: flex-start;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: var(--panel);
   padding: 20px;
   border-radius: 14px;
 }
 
 .hero-title {
   font-size: 36px;
   margin: 0;
 }
 
 .hero-sub {
   font-size: 16px;
 }
