 :root {
   --ink: #1d1c1a;
   --muted: #5a554f;
   --cream: #f7f2ec;
   --fog: #efe8e0;
   --accent: #b44a2f;
   --accent-dark: #8d3520;
   --sage: #6b7a6b;
   --sun: #f2c76f;
   --shadow: rgba(0, 0, 0, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   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;
 }
 
 .topbar {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 24px 6vw 12px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand span {
   font-size: 0.9rem;
   color: var(--muted);
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .brand h1 {
   margin: 0;
   font-size: 2rem;
   font-weight: 700;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 0;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .main {
   flex: 1;
 }
 
 .section {
   padding: 56px 6vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.light {
   background: var(--cream);
 }
 
 .section.fog {
   background: var(--fog);
 }
 
 .section.dark {
   background: #1f1b17;
   color: #fef8f1;
 }
 
 .section .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
 }
 
 .hero {
   padding: 40px 6vw 64px;
   background: linear-gradient(120deg, rgba(247, 242, 236, 0.9), rgba(255, 255, 255, 0.75)),
     url("https://images.unsplash.com/photo-1512909006721-3d6018887383?auto=format&fit=crop&w=1400&q=80") center/cover;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
   max-width: 620px;
 }
 
 .hero h2 {
   font-size: 2.6rem;
   margin: 0;
 }
 
 .hero p {
   font-size: 1.05rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
   transition: 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.primary:hover {
   background: var(--accent-dark);
 }
 
 .btn.ghost {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .btn.light {
   background: #fff;
   color: var(--ink);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split .media {
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 .story-blocks {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   padding: 20px;
   background: #fff;
   border-left: 4px solid var(--sun);
   box-shadow: 0 14px 26px var(--shadow);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   padding: 20px;
   border-radius: 16px;
   background: #fff;
   box-shadow: 0 12px 24px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card img {
   border-radius: 12px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .highlight {
   padding: 16px;
   border-radius: 14px;
   background: rgba(180, 74, 47, 0.12);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .step-number {
   min-width: 40px;
   height: 40px;
   border-radius: 50%;
   background: var(--sage);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price-card {
   border-radius: 18px;
   background: #fff;
   box-shadow: 0 16px 28px var(--shadow);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price-card h4 {
   margin: 0;
 }
 
 .price {
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-shell {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d6cdc4;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   resize: vertical;
   min-height: 110px;
 }
 
 .footer {
   padding: 32px 6vw;
   background: #141210;
   color: #efe7dd;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer a {
   color: #efe7dd;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 14px 30px var(--shadow);
   z-index: 10;
   font-weight: 600;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 14px 30px var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   padding: 4px 10px;
   border-radius: 999px;
   background: rgba(242, 199, 111, 0.25);
 }
 
 .divider {
   width: 100%;
   height: 1px;
   background: rgba(255, 255, 255, 0.2);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   text-decoration: underline;
 }
 
 @media (min-width: 768px) {
   .topbar {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content {
     max-width: 50%;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .cards,
   .pricing-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .price-card {
     flex: 1 1 240px;
   }
 
   .story-blocks {
     flex-direction: row;
   }
 
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 200px;
   }
 
   .cookie-banner {
     left: auto;
     right: 24px;
     max-width: 360px;
   }
 }
