 :root {
   --ink: #1b1b1b;
   --muted: #5a5a5a;
   --paper: #f6f2ec;
   --accent: #1f4b6a;
   --accent-soft: #dbe7ef;
   --warm: #f3e7d8;
   --deep: #13232f;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }

 a {
   color: var(--accent);
   text-decoration: underline;
 }

 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .page {
   max-width: 1180px;
   margin: 0 auto;
   padding: 0 24px 80px;
 }

 header {
   padding: 28px 0 10px;
 }

 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   border-bottom: 1px solid #e1d9cf;
   padding-bottom: 16px;
 }

 .brand {
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }

 .ad-label {
   font-size: 0.85rem;
   color: var(--deep);
   background: var(--accent-soft);
   padding: 6px 10px;
   border-radius: 16px;
 }

 .hero {
   display: flex;
   gap: 28px;
   align-items: stretch;
   padding: 28px 0 40px;
 }

 .hero-text {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }

 .hero-media {
   flex: 1;
   min-height: 320px;
   background: #eadfd3;
   border-radius: 18px;
   overflow: hidden;
 }

 .badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--warm);
   padding: 6px 12px;
   border-radius: 12px;
   font-size: 0.85rem;
 }

 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }

 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 26px;
   border: none;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.95rem;
 }

 .btn.secondary {
   background: var(--deep);
 }

 .section {
   padding: 36px 0;
 }

 .mag-row {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }

 .col-40 {
   flex: 1 1 320px;
 }

 .col-60 {
   flex: 1.5 1 420px;
 }

 .editorial-card {
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 18px 40px rgba(19, 35, 47, 0.08);
 }

 .inline-media {
   background: #e8edf2;
   border-radius: 16px;
   overflow: hidden;
   min-height: 200px;
 }

 .bg-sand {
   background-color: #e6e0d8;
 }

 .bg-slate {
   background-color: #e3e7eb;
 }

 .bg-warm {
   background-color: #f1e7db;
 }

 .bg-mist {
   background-color: #e6edf2;
 }

 .bg-peach {
   background-color: #f4ede4;
 }

 .bg-clay {
   background-color: #e7dcd2;
 }

 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }

 .service-card {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   min-width: 240px;
 }

 .service-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .price {
   font-weight: 700;
   color: var(--deep);
 }

 .divider {
   height: 1px;
   background: #e7ddd1;
   margin: 12px 0;
 }

 .layered {
   background: var(--accent-soft);
   border-radius: 24px;
   padding: 24px;
 }

 .quote {
   background: #fff;
   border-left: 4px solid var(--accent);
   padding: 16px;
 }

 .form-wrap {
   background: #fff;
   border-radius: 24px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 label {
   font-size: 0.9rem;
   color: var(--muted);
 }

 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d6cbbf;
   font-size: 1rem;
   background: #faf7f3;
 }

 textarea {
   min-height: 120px;
   resize: vertical;
 }

 .sticky-cta {
   position: fixed;
   bottom: 24px;
   right: 24px;
   z-index: 5;
 }

 .footer {
   background: #111c24;
   color: #e7e7e7;
   padding: 32px 24px;
   margin-top: 40px;
 }

 .footer a {
   color: #d5e6f2;
 }

 .footer-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   justify-content: space-between;
 }

 .legal-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.9rem;
 }

 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid #e0d6c9;
   padding: 16px 24px;
   display: none;
   z-index: 10;
 }

 .cookie-inner {
   max-width: 1100px;
   margin: 0 auto;
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
 }

 .cookie-btn {
   background: var(--deep);
   color: #fff;
   border: none;
   padding: 8px 14px;
   border-radius: 18px;
   cursor: pointer;
 }

 .cookie-btn.alt {
   background: #6a6a6a;
 }

 @media (max-width: 860px) {
   .hero {
     flex-direction: column;
   }
   .topbar {
     align-items: flex-start;
     flex-direction: column;
   }
 }
