 :root {
   --bg: #f7f4f1;
   --ink: #1b1b1b;
   --muted: #5e5e5e;
   --accent: #1f6b5b;
   --accent-dark: #164a3f;
   --sand: #efe7dc;
   --clay: #d7c7b3;
   --paper: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .header {
   padding: 26px 0 10px;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 2px;
 }
 
 .brand span {
   font-size: 20px;
   font-weight: 600;
 }
 
 .ad-label {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--muted);
   border: 1px solid var(--clay);
   padding: 6px 10px;
   border-radius: 999px;
   align-self: center;
 }
 
 .nav {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .nav a {
   text-decoration: none;
   padding: 8px 12px;
   border-radius: 18px;
   background: var(--paper);
 }
 
 .nav a:hover,
 .nav a:focus {
   background: var(--sand);
 }
 
 .hero {
   display: flex;
   gap: 32px;
   align-items: stretch;
   padding: 40px 0 70px;
 }
 
 .hero-copy {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 20px;
 }
 
 .hero-copy h1 {
   font-size: clamp(32px, 4vw, 56px);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero-copy p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   text-decoration: none;
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   background: var(--accent);
   color: white;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   color: #fff;
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus {
   background: var(--accent);
   color: #fff;
 }
 
 .hero-visual {
   flex: 1.2;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .hero-visual .image-wrap {
   width: 100%;
   background: var(--clay);
   border-radius: 32px;
   overflow: hidden;
   transform: rotate(-1deg);
 }
 
 .floating-card {
   position: absolute;
   bottom: -30px;
   right: 10%;
   background: var(--paper);
   padding: 16px 20px;
   border-radius: 18px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   max-width: 220px;
 }
 
 .floating-card strong {
   display: block;
   margin-bottom: 6px;
 }
 
 .section {
   padding: 70px 0;
 }
 
 .section.alt {
   background: var(--sand);
 }
 
 .asym-row {
   display: flex;
   gap: 30px;
   align-items: flex-start;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-row .text-col {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .asym-row .media-col {
   flex: 1.1;
   background: var(--clay);
   border-radius: 26px;
   overflow: hidden;
 }
 
 .tag-list {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .tag {
   background: var(--paper);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 14px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card-row {
   display: flex;
   gap: 18px;
 }
 
 .card {
   flex: 1;
   background: var(--paper);
   border-radius: 24px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }

.img-bg-1 {
  background-color: #d4cbc2;
}

.img-bg-2 {
  background-color: #cbbfb4;
}

.img-bg-3 {
  background-color: #d9d0c6;
}

.img-bg-4 {
  background-color: #d1c3b4;
}

.img-bg-5 {
  background-color: #e3d9cf;
}
 
 .card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .storyline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .highlight-box {
   background: var(--paper);
   border-left: 4px solid var(--accent);
   padding: 18px;
   border-radius: 14px;
 }
 
 .form-shell {
   background: var(--paper);
   padding: 28px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-group {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #d4d4d4;
   font-size: 16px;
 }
 
 .form-note {
   font-size: 14px;
   color: var(--muted);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: none;
   border-bottom: 1px solid transparent;
 }
 
 .inline-link:hover,
 .inline-link:focus {
   border-bottom-color: var(--accent);
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 0 60px;
   background: #1c1c1c;
   color: #f4f4f4;
 }
 
 .footer a {
   color: inherit;
   text-decoration: none;
 }
 
 .footer-top {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-between;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .references {
   margin-top: 20px;
   font-size: 13px;
   color: #c8c8c8;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--paper);
   border-radius: 999px;
   padding: 8px 8px 8px 16px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   display: flex;
   align-items: center;
   gap: 10px;
   z-index: 20;
 }
 
 .sticky-cta span {
   font-size: 14px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #151515;
   color: #f1f1f1;
   padding: 16px 20px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions .btn {
   padding: 10px 16px;
 }
 
 .cookie-actions .btn.secondary {
   border-color: #f1f1f1;
   color: #f1f1f1;
 }
 
 .page-hero {
   padding: 30px 0 40px;
 }
 
 .page-hero h1 {
   margin: 0;
   font-size: clamp(30px, 4vw, 46px);
 }
 
 .two-column {
   display: flex;
   gap: 30px;
   align-items: flex-start;
 }
 
 .two-column .panel {
   flex: 1;
   background: var(--paper);
   border-radius: 20px;
   padding: 20px;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .legal-section {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--paper);
   padding: 22px;
   border-radius: 18px;
 }
 
 @media (max-width: 900px) {
   .hero {
     flex-direction: column;
   }
 
   .floating-card {
     position: static;
     transform: translateY(-20px);
   }
 
   .asym-row,
   .asym-row.reverse,
   .card-row,
   .two-column {
     flex-direction: column;
   }
 
   .sticky-cta {
     left: 16px;
     right: 16px;
     justify-content: space-between;
   }
 }
