 :root {
   color-scheme: light;
   --bg: #f8f6f2;
   --ink: #1f1f1d;
   --muted: #5d5a55;
   --accent: #8a4f2a;
   --accent-soft: #f1e6dd;
   --surface: #ffffff;
   --line: #e4ddd4;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 header {
   border-bottom: 1px solid var(--line);
   background: var(--surface);
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 6vw;
   gap: 16px;
 }
 
 .brand {
   font-weight: 600;
   letter-spacing: 0.5px;
   text-transform: lowercase;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   justify-content: flex-end;
   text-transform: uppercase;
   font-size: 12px;
   letter-spacing: 1px;
 }
 
 .ad-label {
   font-size: 12px;
   text-transform: none;
   color: var(--muted);
   max-width: 260px;
   text-align: right;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 40px;
   padding: 32px 6vw 80px;
 }
 
 .split-section {
   display: flex;
   gap: 36px;
   align-items: stretch;
   flex-wrap: wrap;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-media,
 .split-content {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .split-media {
   background: #dcd2c7;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .split-content {
   display: flex;
   flex-direction: column;
   gap: 16px;
   justify-content: center;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 12px;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--accent);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.soft {
   background: var(--accent-soft);
   border-color: transparent;
   color: var(--accent);
 }
 
 .inline-link {
   color: var(--accent);
   text-decoration: underline;
 }
 
 .card-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 260px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-media {
   background: #e6d8cc;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .section-panel {
   background: var(--surface);
   border-radius: 20px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .bg-story {
   background: #2c2723;
   color: #f6f2ed;
   border-radius: 20px;
   padding: 32px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .bg-story::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(20, 18, 16, 0.65);
   border-radius: 20px;
 }
 
 .bg-story > * {
   position: relative;
   z-index: 1;
 }
 
 .bg-craft {
   background: #f1ebe4;
   border-radius: 20px;
   padding: 30px;
   background-image: url("https://images.unsplash.com/photo-1489171078254-c3365d6e359f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .bg-craft::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(244, 236, 229, 0.82);
   border-radius: 20px;
 }
 
 .bg-craft > * {
   position: relative;
   z-index: 1;
 }
 
 .form-card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 24px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid var(--line);
   font-family: inherit;
 }
 
 textarea {
   resize: vertical;
   min-height: 120px;
 }
 
 .form-steps {
   display: flex;
   gap: 12px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .form-steps span {
   background: var(--accent-soft);
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 footer {
   padding: 32px 6vw 60px;
   border-top: 1px solid var(--line);
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 14px;
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   max-width: 320px;
   display: none;
   gap: 12px;
   flex-direction: column;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-main {
   padding: 32px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .legal-card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 24px;
 }
 
 .notice {
   padding: 14px 18px;
   background: var(--accent-soft);
   border-radius: 12px;
   color: var(--accent);
   font-weight: 600;
 }
 
 @media (max-width: 820px) {
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
