 :root {
   color-scheme: light;
   --bg: #f8f5f2;
   --ink: #2a1f1a;
   --accent: #c06b4b;
   --accent-dark: #9a4e35;
   --muted: #6d5c54;
   --cream: #fff7f0;
   --rose: #f3e4dd;
   --olive: #e7e2d4;
   --shadow: 0 20px 40px rgba(43, 31, 26, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 32px 24px;
   background: var(--cream);
   display: flex;
   flex-direction: column;
   gap: 32px;
   border-right: 1px solid #eadfd6;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .brand span {
   font-size: 12px;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: var(--muted);
 }
 
 .brand strong {
   font-size: 22px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 15px;
 }
 
 .nav a {
   padding: 6px 0;
 }
 
 .sidebar .cta {
   margin-top: auto;
 }
 
 .main {
   flex: 1;
   padding: 36px 40px 80px;
   display: flex;
   flex-direction: column;
   gap: 40px;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 20px;
   background: var(--rose);
   padding: 32px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .hero .hero-content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero .hero-visual {
   display: flex;
   justify-content: center;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 12px;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   margin: 0;
   font-weight: 600;
 }
 
 h1 {
   font-size: 36px;
 }
 
 h2 {
   font-size: 28px;
 }
 
 h3 {
   font-size: 20px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--olive);
   font-size: 12px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-size: 14px;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .btn.ghost {
   background: transparent;
   color: var(--ink);
   border: 1px solid #d9cfc8;
 }
 
 .inline-link {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .gallery {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .gallery-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote {
   font-style: italic;
   background: var(--cream);
   padding: 16px;
   border-radius: 16px;
 }
 
 .cta-band {
   background: var(--accent-dark);
   color: #fff;
   padding: 24px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-wrapper {
   background: #fff;
   padding: 24px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 input, select, textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid #dfd6cf;
   font-size: 14px;
   background: #fff;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 24px;
   z-index: 30;
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #fff;
   border-top: 1px solid #e5dcd6;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .meta-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .meta-list div {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 details {
   background: var(--cream);
   padding: 14px 16px;
   border-radius: 14px;
 }
 
 details summary {
   cursor: pointer;
   font-weight: 600;
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .hero-content {
     max-width: 55%;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .gallery-row {
     flex-direction: row;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 12px;
   }
 }
