 :root {
   color-scheme: light;
   --bg: #f6f2ee;
   --ink: #1f1d1b;
   --muted: #5c5854;
   --accent: #7b2f2f;
   --accent-2: #1f5a60;
   --soft: #efe7df;
   --card: #ffffff;
   --shadow: 0 18px 40px rgba(27, 21, 17, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 .topbar {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 1.5rem 7vw;
   background: #fff;
 }
 
 .brand {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
 }
 
 .brand h1 {
   font-size: 1.4rem;
   letter-spacing: 0.05em;
   text-transform: uppercase;
   margin: 0;
 }
 
 .brand span {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 0.25rem;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   padding: 5rem 7vw 4rem;
   background: linear-gradient(120deg, rgba(123, 47, 47, 0.12), rgba(31, 90, 96, 0.1)),
     url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1400&q=80")
     center/cover no-repeat;
   color: #1e1a18;
 }
 
 .hero-content {
   background: rgba(255, 255, 255, 0.86);
   padding: 2rem;
   max-width: 680px;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   box-shadow: var(--shadow);
 }
 
 .hero h2 {
   font-size: 2.2rem;
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.85rem 1.4rem;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-ghost {
   background: transparent;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 4rem 7vw;
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .section.soft {
   background: var(--soft);
 }
 
 .section.dark {
   background: #1f1d1b;
   color: #fff;
 }
 
 .section .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.18em;
   font-size: 0.8rem;
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .split.reverse {
   flex-direction: column;
 }
 
 .story-card {
   background: var(--card);
   padding: 1.5rem;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .metric {
   background: #fff;
   padding: 1.2rem;
   border-left: 4px solid var(--accent);
 }
 
 .quote {
   font-style: italic;
   background: #fff;
   padding: 1.2rem;
   border-radius: 14px;
   border: 1px solid #e3d7ce;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: #fff;
   padding: 1.5rem;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card img {
   border-radius: 16px;
   max-height: 200px;
   object-fit: cover;
 }
 
 .pricing {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .price-tag {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .inline-cta {
   font-weight: 600;
   text-decoration: underline;
   color: var(--accent);
 }
 
 .form-panel {
   background: #fff;
   padding: 2rem;
   border-radius: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 0.8rem 1rem;
   border-radius: 12px;
   border: 1px solid #d9cfc7;
   font-size: 1rem;
 }
 
 .footer {
   padding: 3rem 7vw;
   background: #141210;
   color: #f6f2ee;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 1.5rem;
   bottom: 1.5rem;
   background: var(--accent-2);
   color: #fff;
   padding: 0.9rem 1.3rem;
   border-radius: 999px;
   box-shadow: var(--shadow);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1.5rem;
   bottom: 1.5rem;
   background: #fff;
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 1rem 1.2rem;
   max-width: 320px;
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
 }
 
 .notice {
   background: #fff;
   padding: 1.2rem;
   border-radius: 18px;
   border: 1px dashed #d5c5b8;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .legal {
   max-width: 900px;
 }
 
 @media (min-width: 900px) {
   .topbar {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .brand {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .hero {
     flex-direction: row;
     align-items: flex-end;
     justify-content: space-between;
   }
 
   .hero-content {
     margin-top: 4rem;
   }
 
   .split,
   .split.reverse {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards,
   .pricing,
   .metrics,
   .contact-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cards .card,
   .pricing .card,
   .metrics .metric,
   .contact-grid .card {
     flex: 1 1 240px;
   }
 }
