 :root {
   color-scheme: light;
   --ink: #1b1b1b;
   --muted: #5d5d5d;
   --accent: #c98b2b;
   --accent-2: #3a2f2a;
   --sand: #f6f1ea;
   --fog: #f2f4f7;
   --line: #e2e2e2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   object-fit: cover;
   display: block;
 }
 
 header {
   padding: 28px 6vw 0;
 }
 
 .top-nav {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   border-bottom: 1px solid var(--line);
   padding-bottom: 18px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand strong {
   font-size: 1.35rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 10px;
   border-radius: 999px;
   background: var(--fog);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 48px 6vw 36px;
   background: var(--sand);
 }
 
 .hero-copy {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .hero-copy h1 {
   font-size: 2.4rem;
   margin: 0 0 18px;
 }
 
 .hero-copy p {
   font-size: 1.05rem;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .hero-visual {
   flex: 1 1 320px;
   min-width: 280px;
   background-color: #d8c6b2;
   border-radius: 24px;
   overflow: hidden;
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .section {
   padding: 0 6vw;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 320px;
   min-width: 260px;
 }
 
 .split .image-frame {
   flex: 1 1 320px;
   min-width: 260px;
   background-color: #d9dfe6;
   border-radius: 22px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
 }
 
 .inline-cta {
   color: var(--accent-2);
   text-decoration: underline;
 }
 
 .story-card {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 22px;
   border-radius: 18px;
   background: var(--fog);
 }
 
 .story-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .story-grid .story-card {
   flex: 1 1 240px;
 }
 
 .pricing {
   background: var(--sand);
   padding: 40px 6vw;
 }
 
 .pricing-list {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .price-item {
   flex: 1 1 220px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .price-item strong {
   display: block;
   margin-top: 10px;
   color: var(--accent);
 }
 
 .form-section {
   padding: 0 6vw 60px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--fog);
   padding: 26px;
   border-radius: 18px;
 }
 
 label {
   font-size: 0.95rem;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 button,
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-size: 1rem;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: var(--accent-2);
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 10;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 18px 20px;
   border-radius: 16px;
   border: 1px solid var(--line);
 }

 .glow-panel {
   background-color: #d7d0c6;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
   background-size: cover;
   background-position: center;
   padding: 36px;
   border-radius: 22px;
   color: #1f1c18;
 }
 
 .footer {
   padding: 32px 6vw 40px;
   background: #111111;
   color: #f6f1ea;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #f6f1ea;
   text-decoration: underline;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .legal-note {
   font-size: 0.9rem;
   color: #d1c7bd;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 15;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .page-hero {
   padding: 36px 6vw;
   background: var(--sand);
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .page-hero h1 {
   margin: 0;
 }
 
 .page-hero .image-frame {
   flex: 1 1 280px;
   background-color: #c9cfd8;
   border-radius: 20px;
   overflow: hidden;
 }
 
 .page-hero img {
   width: 100%;
   height: 100%;
 }
 
 .content-block {
   padding: 24px 6vw 40px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .list-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .list-grid .story-card {
   flex: 1 1 240px;
 }
*** End Patch
