 :root {
   --ink: #1d1b1a;
   --muted: #5b5a57;
   --paper: #f7f3ed;
   --accent: #b1552f;
   --accent-soft: #f0d9c9;
   --deep: #2b2a28;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 6vw;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 16px;
   background: #fff;
   border-bottom: 1px solid #eadfd4;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
 }
 
 .nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   align-items: center;
   font-size: 15px;
 }
 
 .ad-label {
   padding: 6px 10px;
   background: var(--accent-soft);
   border-radius: 999px;
   font-size: 12px;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .section {
   padding: 0 6vw;
 }
 
 .hero {
   min-height: 70vh;
   display: flex;
   align-items: flex-end;
   background-image: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-color: #d6c8bc;
   background-blend-mode: overlay;
 }
 
 .hero-content {
   max-width: 520px;
   background: rgba(255, 255, 255, 0.9);
   padding: 32px;
   margin: 48px 0;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-title {
   font-size: 38px;
   line-height: 1.2;
   margin: 0;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   background: var(--accent);
   color: #fff;
   border-radius: 6px;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: var(--deep);
 }
 
 .btn:hover,
 .link-inline:hover {
   opacity: 0.85;
 }
 
 .magazine-row {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }
 
 .magazine-row .col {
   flex: 1 1 280px;
 }
 
 .image-frame {
   background-color: #dcd2c7;
   border-radius: 12px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: auto;
   display: block;
 }
 
 .img-cover {
   object-fit: cover;
 }
 
 .feature-card {
   background: #fff;
   padding: 24px;
   border-radius: 14px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   border: 1px solid #e6d8cc;
 }
 
 .services-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 16px;
   overflow: hidden;
   border: 1px solid #eadfd4;
   display: flex;
   flex-direction: column;
 }
 
 .service-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .cta-strip {
   background: #fff4e8;
   padding: 18px 6vw;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   border-top: 1px solid #eadfd4;
   border-bottom: 1px solid #eadfd4;
 }
 
 .form-wrap {
   background: #fff;
   padding: 28px;
   border-radius: 18px;
   border: 1px solid #eadfd4;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 label {
   font-weight: 600;
 }
 
 select,
 input {
   padding: 10px 12px;
   border-radius: 6px;
   border: 1px solid #cfc4b8;
   font-size: 15px;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 12px;
   margin: 0 6vw 18px;
   background: #fff;
   border: 1px solid #eadfd4;
   border-radius: 999px;
   padding: 10px 16px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 footer {
   padding: 36px 6vw 60px;
   background: #1d1b1a;
   color: #f5efe8;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 footer a {
   color: #f5efe8;
 }
 
 .footer-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: flex-start;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   background: #fff;
   border-radius: 14px;
   border: 1px solid #eadfd4;
   padding: 18px;
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 99;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .list-plain {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .wide-section {
   background: #fff;
   padding: 32px 6vw;
   border-top: 1px solid #eadfd4;
   border-bottom: 1px solid #eadfd4;
 }
 
 .inline-quote {
   border-left: 4px solid var(--accent);
   padding-left: 14px;
   font-style: italic;
 }
 
 .link-inline {
   text-decoration: underline;
 }
