 :root {
   color-scheme: light;
   --ink: #1d1b1a;
   --muted: #5c5a57;
   --accent: #1f4b99;
   --accent-2: #ce4b2e;
   --bg: #f5f2ee;
   --panel: #ffffff;
   --shade: #ece6df;
   --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
   --radius: 20px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   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;
 }
 
 .top-nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 6vw 10px;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 2px;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
 }
 
 .brand span {
   font-size: 0.75rem;
   letter-spacing: 0.3em;
   color: var(--muted);
   text-transform: none;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-bottom-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 30px;
   padding: 40px 6vw 70px;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   right: 10%;
   top: 20px;
   width: 35%;
   height: 70%;
   background: url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1100&q=80")
     center/cover no-repeat;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .hero-content {
   max-width: 620px;
   z-index: 1;
 }
 
 .hero h1 {
   font-size: clamp(2.5rem, 3vw, 3.4rem);
   margin-bottom: 16px;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
   margin-bottom: 24px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 2px solid var(--ink);
   font-weight: 600;
   transition: 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   border-color: var(--accent);
   color: #fff;
 }
 
 .btn.ghost {
   background: transparent;
 }
 
 .btn:hover {
   transform: translateY(-2px);
 }
 
 .floating-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: var(--accent-2);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   z-index: 20;
 }
 
 .section {
   padding: 60px 6vw;
   position: relative;
 }
 
 .section.alt {
   background: var(--shade);
 }
 
 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 24px;
   background: var(--panel);
   padding: 32px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   transform: translateX(4vw);
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > * {
   flex: 1 1 260px;
 }
 
 .tag {
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.18em;
   color: var(--accent-2);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--panel);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
   position: relative;
   top: -20px;
 }
 
 .service-card:nth-child(even) {
   top: 20px;
 }
 
 .price {
   font-size: 1.4rem;
   font-weight: 700;
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
   border-bottom: 1px solid var(--accent);
   align-self: flex-start;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: var(--panel);
   padding: 30px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .form-row input,
 .form-row select,
 .form-row textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #d2cbc3;
   font-size: 1rem;
 }
 
 .form-note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .testimonial {
   background: #fff;
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .media-stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .media-stack img {
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .footer {
   margin-top: auto;
   padding: 40px 6vw 60px;
   background: #161514;
   color: #f5efe6;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .footer small {
   color: rgba(255, 255, 255, 0.6);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: #ffffff;
   border-radius: 16px;
   box-shadow: var(--shadow);
   padding: 18px;
   display: none;
   z-index: 25;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }
 
 .page-header {
   padding: 40px 6vw 20px;
 }
 
 .page-header h1 {
   font-size: clamp(2.2rem, 3vw, 3rem);
   margin-bottom: 10px;
 }
 
 .list-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .list-columns > div {
   flex: 1 1 240px;
   background: var(--panel);
   padding: 24px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .text-block {
   background: var(--panel);
   padding: 28px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .contact-card {
   background: var(--panel);
   padding: 28px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 @media (max-width: 900px) {
   .hero::after {
     position: static;
     width: 100%;
     height: 260px;
   }
 
   .hero {
     padding-bottom: 40px;
   }
 
   .offset-block {
     transform: none;
   }
 
   .service-card,
   .service-card:nth-child(even) {
     top: 0;
   }
 
   .floating-cta {
     right: 14px;
     bottom: 14px;
   }
 }
