 :root {
   --bg: #f6f3ef;
   --bg-alt: #ffffff;
   --ink: #1b1b1b;
   --muted: #5b5b5b;
   --accent: #d36b4a;
   --accent-dark: #b95335;
   --soft: #efe7df;
   --line: #e1d8ce;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 24px 5vw 8px;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 600;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   background: var(--soft);
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   background: var(--soft);
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 40px;
   padding-bottom: 40px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 0 5vw 24px;
 }
 
 .hero-media {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: #1f1f1f;
   border-radius: 24px;
   overflow: hidden;
   color: #fff;
 }
 
 .hero-media img {
   width: 100%;
   height: 420px;
 }
 
 .hero-copy {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 18px 24px 26px;
 }
 
 .hero h1 {
   margin: 0;
   font-size: 2.4rem;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
   border: none;
   border-radius: 999px;
   padding: 12px 20px;
   font-size: 1rem;
   cursor: pointer;
   background: var(--accent);
   color: #fff;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--ink);
   color: var(--ink);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   background: var(--ink);
   color: #fff;
 }
 
 .section {
   padding: 0 5vw;
 }
 
 .section.split {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .section.split.reverse {
   flex-direction: row-reverse;
 }
 
 .section .panel {
   flex: 1 1 280px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .section .panel img {
   border-radius: 18px;
   background: #d8d0c6;
 }
 
 .highlight {
   background: var(--bg-alt);
   padding: 28px;
   border-radius: 22px;
   border: 1px solid var(--line);
 }
 
 .story {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--soft);
   padding: 30px;
   border-radius: 24px;
 }
 
 .inline-link {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--bg-alt);
   border-radius: 20px;
   border: 1px solid var(--line);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card img {
   width: 100%;
   height: 180px;
   background: #cfc4ba;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 600;
 }
 
 .quote {
   background: var(--bg-alt);
   border-left: 4px solid var(--accent);
   padding: 18px 20px;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .form-wrap {
   background: var(--bg-alt);
   border-radius: 24px;
   border: 1px solid var(--line);
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .form-row > div {
   flex: 1 1 180px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .banner {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: #1f1f1f;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
   color: #fff;
   padding: 18px 24px;
   border-radius: 20px;
 }
 
 .footer {
   padding: 32px 5vw;
   background: #121212;
   color: #eee;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .footer a:hover,
 .footer a:focus {
   text-decoration: underline;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .footer-col {
   flex: 1 1 180px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
 }
 
 .sticky-cta button {
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   max-width: 320px;
   background: #fff;
   border-radius: 18px;
   border: 1px solid var(--line);
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }
 
 .cookie-actions .btn {
   flex: 1 1 120px;
 }
 
 .cookie-actions .btn-outline {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .hero-media span {
   font-size: 0.95rem;
   color: #e1e1e1;
 }
 
 .subtle {
   color: var(--muted);
 }
 
 .legal {
   background: var(--bg-alt);
   padding: 28px;
   border-radius: 20px;
   border: 1px solid var(--line);
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--soft);
   padding: 20px;
   border-radius: 18px;
 }
 
 .image-frame {
   background: #d6ccc1;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 260px;
 }
 
 .two-column {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .two-column > div {
   flex: 1 1 240px;
 }
 
 @media (max-width: 700px) {
   .hero-media img {
     height: 260px;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
