 :root {
   --bg: #f6f3ef;
   --ink: #1c1b1a;
   --muted: #5e5a54;
   --accent: #2e5d7b;
   --accent-2: #8a6f4b;
   --light: #ffffff;
   --line: #d9d2c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 header {
   padding: 24px 6vw 0;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   border-bottom: 1px solid var(--line);
   padding-bottom: 18px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 0.9rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav-links a {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 40px 6vw 0;
 }
 
 .hero__grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero__text {
   background: var(--light);
   padding: 32px;
   box-shadow: 0 22px 40px rgba(28, 27, 26, 0.08);
   position: relative;
   z-index: 2;
 }
 
 .hero__media {
   margin-left: auto;
   max-width: 520px;
   border-radius: 24px;
   overflow: hidden;
   border: 1px solid var(--line);
 }
 
 .hero__title {
   font-size: clamp(2rem, 5vw, 3.2rem);
   margin: 0 0 12px;
 }
 
 .hero__actions {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 22px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: var(--light);
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.2s ease;
 }
 
 .btn:hover {
   transform: translateY(-2px);
 }
 
 .btn--ghost {
   background: transparent;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 60px 6vw;
 }
 
 .section--soft {
   background: #efe9e2;
 }
 
 .section--dark {
   background: #1f2d33;
   color: var(--light);
 }
 
 .section__inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split--reverse {
   flex-direction: column-reverse;
 }
 
 .offset-box {
   background: var(--light);
   padding: 28px;
   border: 1px solid var(--line);
   box-shadow: -12px 18px 0 rgba(138, 111, 75, 0.2);
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--light);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-width: 220px;
 }
 
 .card img {
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .inline-cta {
   font-weight: 600;
   color: var(--accent-2);
 }
 
 .quote {
   background: rgba(255, 255, 255, 0.1);
   padding: 24px;
   border-left: 4px solid var(--accent-2);
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline__item {
   background: var(--light);
   padding: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .form-panel {
   background: var(--light);
   padding: 28px;
   border-radius: 20px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 .form-message {
   font-size: 0.95rem;
   color: var(--accent-2);
 }
 
 footer {
   padding: 40px 6vw 60px;
   border-top: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   max-width: 320px;
   background: var(--light);
   border: 1px solid var(--line);
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 12;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 @media (min-width: 860px) {
   .hero__grid {
     flex-direction: row;
     align-items: center;
   }
 
   .hero__text {
     max-width: 520px;
     margin-right: -120px;
   }
 
   .hero__media {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split--reverse {
     flex-direction: row-reverse;
   }
 
   .section__inner {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .section__inner > * {
     flex: 1;
   }
 }
