 :root {
   --ink: #1c1f2a;
   --muted: #5f6676;
   --paper: #f7f5f2;
   --paper-strong: #f1eee7;
   --accent: #3b6cff;
   --accent-soft: #dfe7ff;
   --highlight: #ffb86b;
   --shadow: rgba(24, 27, 35, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 22px 6vw;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   justify-content: flex-end;
 }
 
 .nav a {
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   border: 1px solid var(--accent-soft);
   padding: 6px 10px;
   border-radius: 999px;
   background: #fff;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 10px 6vw 60px;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 40px 32px 40px 0;
 }
 
 .hero-title {
   font-size: 40px;
   line-height: 1.15;
   margin: 0;
 }
 
 .hero-panel {
   background: #fff;
   padding: 18px 20px;
   border-left: 5px solid var(--accent);
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 .hero-media {
   flex: 1 1 320px;
   min-height: 380px;
   background-size: cover;
   background-position: center;
   border-radius: 24px;
   background-color: var(--paper-strong);
   position: relative;
 }
 
 .hero-tag {
   position: absolute;
   bottom: -18px;
   right: 18px;
   background: var(--highlight);
   padding: 10px 18px;
   border-radius: 999px;
   font-size: 14px;
   box-shadow: 0 14px 30px var(--shadow);
 }
 
 .cta-button {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   align-self: flex-start;
 }
 
 .cta-button:hover {
   filter: brightness(0.95);
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .section.muted {
   background: var(--paper-strong);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .offset-card {
   background: #fff;
   padding: 26px;
   border-radius: 18px;
   box-shadow: 0 22px 50px var(--shadow);
   max-width: 420px;
 }
 
 .offset-card.alt {
   transform: translateY(18px);
   border-top: 6px solid var(--highlight);
 }
 
 .image-frame {
   background-color: #e6e1d6;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .service-card {
   flex: 1 1 220px;
   min-width: 220px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 16px 30px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   font-size: 18px;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .staggered {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .staggered .item {
   background: #fff;
   padding: 18px 20px;
   border-radius: 14px;
   box-shadow: 0 12px 22px var(--shadow);
 }
 
 .form-shell {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
 }
 
 .service-choice {
   flex: 1 1 260px;
   background: #fff;
   padding: 22px;
   border-radius: 20px;
   box-shadow: 0 18px 35px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-choice button {
   border: 1px solid var(--accent-soft);
   background: #fff;
   padding: 10px 14px;
   border-radius: 12px;
   text-align: left;
   cursor: pointer;
 }
 
 .service-choice button.active {
   border-color: var(--accent);
   background: var(--accent-soft);
 }
 
 .lead-form {
   flex: 1 1 280px;
   background: #fff;
   padding: 26px;
   border-radius: 20px;
   box-shadow: 0 18px 35px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .lead-form label {
   font-size: 14px;
   color: var(--muted);
 }
 
 .lead-form input,
 .lead-form select,
 .lead-form textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #d7d7db;
   font-family: inherit;
 }
 
 .lead-form button {
   align-self: flex-start;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   z-index: 20;
 }
 
 .footer {
   padding: 50px 6vw;
   background: #11131b;
   color: #d9dbe5;
 }
 
 .footer a {
   color: #d9dbe5;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #fff;
   border-radius: 16px;
   padding: 16px 20px;
   box-shadow: 0 16px 30px var(--shadow);
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: 1px solid var(--accent);
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
   background: #fff;
 }
 
 .cookie-actions button.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .bg-hero {
   background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?w=1400&q=80");
 }
 
 .bg-library {
   background-image: url("https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1400&q=80");
 }
 
 .bg-workshop {
   background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
 }
 
 .banner-image {
   min-height: 260px;
   background-size: cover;
   background-position: center;
   border-radius: 24px;
   background-color: #e9e4db;
 }
 
 .highlight-band {
   background: #fff;
   padding: 18px 24px;
   border-radius: 16px;
   box-shadow: 0 20px 40px var(--shadow);
 }
 
 @media (max-width: 860px) {
   .topbar {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .hero-title {
     font-size: 32px;
   }
 
   .sticky-cta {
     right: 14px;
     bottom: 14px;
   }
 }
