 :root {
   --ink: #1a1a1a;
   --muted: #5a5f66;
   --paper: #f6f3ef;
   --accent: #1f5f7a;
   --accent-2: #8a4b2c;
   --sand: #efe7de;
   --stone: #e3e8ec;
   --shadow: rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 a:hover,
 button:focus,
 button:hover {
   outline: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   background: #ffffff;
   border-bottom: 1px solid #e4e4e4;
 }
 
 .nav-wrap {
   max-width: 1200px;
   margin: 0 auto;
   padding: 24px 32px 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand .title {
   font-size: 22px;
   margin: 0;
   letter-spacing: 0.4px;
 }
 
 .brand span {
   font-size: 12px;
   color: var(--muted);
 }
 
 nav ul {
   list-style: none;
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 0;
   padding: 0;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   background: var(--sand);
   color: var(--accent-2);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 main {
   flex: 1;
 }
 
 section {
   padding: 64px 32px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   align-items: center;
   justify-content: space-between;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .panel {
   flex: 1 1 360px;
   min-width: 280px;
 }
 
 .panel h2 {
   margin-top: 0;
   font-size: 30px;
 }
 
 .panel p {
   color: var(--muted);
 }
 
 .hero {
   background: var(--paper);
 }
 
 .hero h1 {
   font-size: 36px;
 }
 
 .hero .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 22px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 24px;
   border: none;
   background: var(--accent);
   color: #ffffff;
   font-size: 14px;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .btn.ghost {
   background: var(--stone);
   color: var(--ink);
 }
 
 .img-frame {
   background: var(--stone);
   padding: 12px;
   border-radius: 18px;
   box-shadow: 0 12px 30px var(--shadow);
 }
 
 .img-frame img {
   width: 100%;
   height: auto;
   display: block;
   border-radius: 12px;
   object-fit: cover;
 }
 
 .bg-panel {
   background-color: var(--sand);
   border-radius: 20px;
   padding: 28px;
   color: #ffffff;
   min-height: 320px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   background-size: cover;
   background-position: center;
 }
 
 .bg-editorial {
   background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?w=1400&q=80");
 }
 
 .bg-panel h3,
 .bg-panel p {
   color: #ffffff;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   gap: 16px;
   padding: 18px;
   border-radius: 16px;
   background: #ffffff;
   box-shadow: 0 10px 24px var(--shadow);
 }
 
 .card img {
   width: 90px;
   height: 90px;
   border-radius: 12px;
   object-fit: cover;
   background-color: var(--stone);
 }
 
 .card strong {
   display: block;
   margin-bottom: 6px;
 }
 
 .pricing {
   font-size: 14px;
   color: var(--accent-2);
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 16px;
 }
 
 .tag {
   background: var(--paper);
   color: var(--muted);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 12px;
 }
 
 .form-wrap {
   background: var(--paper);
   border-radius: 20px;
   padding: 28px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d7d7d7;
   font-size: 14px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .testimonials {
   background: var(--stone);
 }
 
 .testimonial {
   background: #ffffff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 10px 18px var(--shadow);
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: #ffffff;
   padding: 14px;
   border-radius: 999px;
   box-shadow: 0 12px 30px var(--shadow);
   z-index: 10;
 }
 
 .sticky-cta button {
   border-radius: 999px;
 }
 
 footer {
   background: #121417;
   color: #f5f5f5;
   padding: 32px;
 }
 
 footer .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 footer a {
   color: #f5f5f5;
 }
 
 .small {
   font-size: 12px;
   color: #c5c7ca;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px;
   box-shadow: 0 12px 26px var(--shadow);
   max-width: 320px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .legal-section {
   max-width: 900px;
   margin: 0 auto;
 }
 
 .address-block {
   background: var(--paper);
   padding: 20px;
   border-radius: 18px;
 }
 
 .notice {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 14px 16px;
   border-radius: 12px;
 }
