 :root {
   --ink: #1a1f24;
   --muted: #5a6672;
   --sand: #f3f1ec;
   --fog: #e6ecef;
   --ocean: #0f4c5c;
   --leaf: #2f6f4e;
   --sun: #f2c14e;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--white);
   line-height: 1.6;
 }
 
 a {
   color: var(--ocean);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   text-decoration: underline;
 }
 
 header {
   padding: 20px 6vw;
   border-bottom: 1px solid var(--fog);
   background: var(--white);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .nav-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   background: var(--sun);
   color: #2c2c2c;
   padding: 4px 10px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 main {
   padding: 40px 0 80px;
 }
 
 .section {
   padding: 40px 6vw;
 }
 
 .section-tight {
   padding: 30px 6vw;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.12em;
   color: var(--muted);
 }
 
 .hero-title {
   font-size: clamp(2rem, 3.4vw, 3.2rem);
   margin: 10px 0 16px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   background: var(--ocean);
   color: var(--white);
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn:hover,
 .btn:focus {
   background: #0a3d4a;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--ocean);
   color: var(--ocean);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   background: var(--ocean);
   color: var(--white);
 }
 
 .media {
   background: var(--sand);
   border-radius: 18px;
   overflow: hidden;
 }
 
 .media img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--sand);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-media {
   background: #dfe6e9;
   border-radius: 12px;
   overflow: hidden;
 }

 .card-media img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .price {
   font-weight: 700;
   color: var(--leaf);
 }
 
 .bg-panel {
   color: var(--white);
   background-size: cover;
   background-position: center;
   position: relative;
   overflow: hidden;
 }

 .bg-one {
   background-image: url("https://images.unsplash.com/photo-1759646827242-cf09e30709aa?w=1400&q=80");
 }

 .bg-two {
   background-image: url("https://images.unsplash.com/photo-1751486289950-5c4898a4c773?w=1400&q=80");
 }
 
 .bg-panel::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(13, 34, 44, 0.65);
 }
 
 .bg-panel .split,
 .bg-panel .stack {
   position: relative;
   z-index: 1;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .form-wrap {
   background: var(--fog);
   padding: 24px;
   border-radius: 18px;
 }
 
 .form-grid {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #c7d1d6;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
 }
 
 .notice {
   background: var(--sand);
   padding: 12px 16px;
   border-radius: 12px;
 }
 
 footer {
   padding: 30px 6vw 60px;
   border-top: 1px solid var(--fog);
   color: var(--muted);
   background: var(--white);
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
 }
 
 .sticky-cta button {
   box-shadow: 0 10px 24px rgba(15, 76, 92, 0.25);
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 0 0 0;
   background: var(--white);
   border-top: 1px solid var(--fog);
   padding: 16px 6vw;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   z-index: 30;
   flex-wrap: wrap;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .pill-list {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .pill {
   background: var(--fog);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }

 .mt-20 {
   margin-top: 20px;
 }

 .mt-16 {
   margin-top: 16px;
 }
 
 @media (max-width: 800px) {
   header {
     padding: 18px 5vw;
   }
 
   .section,
   .section-tight {
     padding: 28px 5vw;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
