 :root {
   --ink: #1d1f23;
   --muted: #5f6772;
   --accent: #2f6b4f;
   --accent-2: #243b63;
   --soft: #f4f2ee;
   --soft-2: #eef3f6;
   --warm: #f8efe6;
   --line: #e3e0da;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 .page {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 24px 80px;
 }
 
 .site-header {
   padding: 26px 0 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .nav-brand {
   font-weight: 700;
   text-transform: lowercase;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
   color: var(--muted);
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--accent-2);
   background: var(--soft-2);
   padding: 8px 12px;
   border-radius: 20px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: stretch;
   margin-top: 20px;
 }
 
 .hero-copy {
   flex: 1 1 420px;
   padding: 28px;
   background: var(--soft);
   border-radius: 22px;
   align-self: flex-start;
 }
 
 .hero-media {
   flex: 1 1 380px;
   margin-top: 40px;
 }
 
 .hero-media .image-frame {
   border-radius: 28px;
   overflow: hidden;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   background: var(--warm);
   border-radius: 999px;
   font-size: 12px;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 18px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .inline-cta {
   color: var(--accent-2);
   text-decoration: underline;
 }
 
 .section {
   margin-top: 60px;
 }
 
 .section.asym {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
 }
 
 .section.asym.reverse {
   flex-direction: row-reverse;
 }
 
 .section .content {
   flex: 1 1 420px;
 }
 
 .section .media {
   flex: 1 1 360px;
   align-self: stretch;
   margin-top: 30px;
 }
 
 .offset-box {
   background: var(--soft-2);
   padding: 24px;
   border-radius: 20px;
   margin-left: 20px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 240px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .story-band {
   background: var(--warm);
   border-radius: 26px;
   padding: 28px;
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .story-band .content {
   flex: 2 1 420px;
 }
 
 .story-band .note {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 20px;
   padding: 18px;
 }
 
 .bg-panel {
   background: var(--soft);
   border-radius: 28px;
   padding: 32px;
 }
 
 .bg-image {
   background-size: cover;
   background-position: center;
   border-radius: 28px;
   padding: 40px;
   color: #fff;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .form-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin-bottom: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 14px;
 }
 
 textarea {
   min-height: 100px;
   resize: vertical;
 }
 
 .image-frame {
   background: #dfe6eb;
   border-radius: 20px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
 }
 
 .sticky-cta {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #1d1f23;
   color: #fff;
   padding: 12px 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   z-index: 10;
 }
 
 .sticky-cta .button {
   background: #fff;
   color: #1d1f23;
 }
 
 .site-footer {
   margin-top: 70px;
   padding-top: 30px;
   border-top: 1px solid var(--line);
   color: var(--muted);
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   right: 18px;
   bottom: 70px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 16px;
   max-width: 320px;
   display: none;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
 }
 
 .cookie-actions {
   display: flex;
   gap: 8px;
   margin-top: 10px;
 }
 
 .split-list {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .split-list .item {
   flex: 1 1 260px;
   background: var(--soft-2);
   padding: 18px;
   border-radius: 18px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   border: 1px solid var(--line);
   padding: 18px;
   border-radius: 18px;
 }
 
 .legal-content {
   background: var(--soft);
   padding: 26px;
   border-radius: 20px;
 }
 
 .thanks-panel {
   background: var(--soft-2);
   padding: 30px;
   border-radius: 24px;
 }
 
 .bg-audio {
   background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
 }
