 :root {
   color-scheme: light;
   --bg: #f6f3ef;
   --ink: #1b1b1b;
   --muted: #6b6460;
   --accent: #b84a2b;
   --accent-dark: #8e3a22;
   --soft: #efe8e2;
   --card: #ffffff;
   --line: #ded5cd;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 img {
   max-width: 100%;
   display: block;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }

 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 8vw 10px;
 }

 .brand {
   font-weight: 700;
   font-size: 20px;
   letter-spacing: 0.5px;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 15px;
 }

 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }

 .nav-links a:hover {
   border-color: var(--accent);
 }

 .hero {
   display: flex;
   flex-direction: column;
   gap: 30px;
   padding: 40px 8vw 70px;
   position: relative;
 }

 .hero-visual {
   display: flex;
   justify-content: flex-end;
 }

 .hero-visual img {
   width: 78%;
   border-radius: 18px;
   box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
 }

 .hero-text {
   max-width: 640px;
 }

 .hero h1 {
   font-size: clamp(34px, 4vw, 52px);
   margin: 0 0 16px;
   line-height: 1.1;
 }

 .hero p {
   font-size: 18px;
   color: var(--muted);
   margin-bottom: 24px;
 }

 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }

 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }

 .section {
   padding: 70px 8vw;
   position: relative;
 }

 .section.soft {
   background: var(--soft);
 }

 .section-title {
   font-size: 28px;
   margin: 0 0 18px;
 }

 .asym-row {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: flex-start;
 }

 .offset-card {
   background: var(--card);
   border-radius: 18px;
   padding: 26px;
   flex: 1 1 260px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
 }

 .offset-card.shift {
   margin-top: 36px;
 }

 .floating-note {
   background: var(--accent);
   color: #fff;
   padding: 16px 20px;
   border-radius: 14px;
   position: absolute;
   right: 8vw;
   top: -24px;
   max-width: 260px;
 }

 .timeline {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .timeline-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }

 .step {
   width: 38px;
   height: 38px;
   border-radius: 12px;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }

 .story-strip {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .story-strip img {
   border-radius: 14px;
 }

 .pricing {
   display: flex;
   flex-wrap: wrap;
   gap: 26px;
 }

 .price-card {
   flex: 1 1 250px;
   border-radius: 20px;
   background: var(--card);
   padding: 24px;
   border: 1px solid var(--line);
 }

 .price-card h3 {
   margin: 0 0 8px;
 }

 .price {
   font-size: 22px;
   font-weight: 700;
   color: var(--accent-dark);
 }

 .cta-strip {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 28px;
   border-radius: 20px;
   background: #1b1b1b;
   color: #fff;
 }

 .cta-strip a {
   color: #fff;
 }

 .form-wrap {
   background: var(--card);
   border-radius: 20px;
   padding: 30px;
   border: 1px solid var(--line);
 }

 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 label {
   font-size: 14px;
   color: var(--muted);
 }

 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 15px;
   font-family: inherit;
 }

 .footer {
   padding: 50px 8vw;
   background: #1d1d1d;
   color: #e9e5e1;
   margin-top: auto;
 }

 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }

 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 4;
 }

 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
   max-width: 320px;
   z-index: 5;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }

 .cookie-actions button {
   flex: 1;
 }

 .side-image {
   flex: 1 1 320px;
 }

 .side-text {
   flex: 1 1 320px;
 }

 .wide-banner {
   background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)),
     url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
   border-radius: 24px;
   padding: 60px;
 }

 .inline-link {
   color: var(--accent);
   text-decoration: underline;
   font-weight: 600;
 }

 .image-stack {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }

 .image-stack img:first-child {
   width: 55%;
   border-radius: 16px;
 }

 .image-stack img:last-child {
   width: 40%;
   border-radius: 16px;
   margin-top: 36px;
 }

 .contact-card {
   background: var(--card);
   border-radius: 18px;
   padding: 26px;
   border: 1px solid var(--line);
 }

 @media (max-width: 900px) {
   .hero-visual img {
     width: 100%;
   }

   .floating-note {
     position: static;
     margin-bottom: 20px;
   }

   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }

   .wide-banner {
     padding: 32px;
   }
 }
