 :root {
   --bg: #f7f3ef;
   --ink: #1b1b1f;
   --muted: #5a5a66;
   --accent: #7d5cff;
   --accent-dark: #4a35a8;
   --sand: #efe7df;
   --sage: #dfe8e1;
   --clay: #e6d6cb;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   padding: 28px 6vw 10px;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 nav {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   align-items: center;
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.82rem;
   background: var(--clay);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 main {
   flex: 1;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 30px;
   margin: 10px 6vw 40px;
   padding: 48px;
   background: var(--sand);
   border-radius: 28px;
   position: relative;
   overflow: hidden;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80") center/cover no-repeat;
   opacity: 0.18;
 }
 
 .hero-content {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 640px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 3.8vw, 3.8rem);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero p {
   font-size: 1.1rem;
   margin: 0;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid var(--ink);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .btn:focus,
 .btn:hover {
   transform: translateY(-1px);
 }
 
 .asym-grid {
   display: flex;
   flex-direction: column;
   gap: 26px;
   margin: 0 6vw 40px;
 }
 
 .asym-row {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   align-items: stretch;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .card {
   background: #fff;
   padding: 26px;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   flex: 1 1 280px;
   min-width: 250px;
 }
 
 .card.muted {
   background: var(--sage);
 }
 
 .card h2,
 .card h3 {
   margin: 0;
 }
 
 .card p {
   margin: 0;
   color: var(--muted);
 }
 
 .image-frame {
   background: var(--clay);
   border-radius: 20px;
   overflow: hidden;
   flex: 1 1 320px;
   min-width: 260px;
 }
 
 .image-frame.tall img {
   height: 360px;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin: 0 0 10px;
 }
 
 .story-band {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 40px 6vw;
   background: var(--clay);
 }
 
 .story-band h2 {
   margin: 0;
 }
 
 .story-band p {
   max-width: 760px;
   margin: 0;
 }
 
 .services {
   padding: 20px 6vw 40px;
 }
 
 .services-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   background: #fff;
   border-radius: 22px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   flex: 1 1 240px;
   min-width: 240px;
 }
 
 .service-card .price {
   font-weight: 700;
 }
 
 .panel {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 36px 6vw;
   align-items: flex-start;
 }
 
 .panel.bg-abstract {
   background: var(--sage);
   position: relative;
   overflow: hidden;
 }
 
 .panel.bg-abstract::after {
   content: "";
   position: absolute;
   inset: 0;
   background: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80") center/cover no-repeat;
   opacity: 0.16;
 }
 
 .panel-content {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 14px;
   flex: 1 1 320px;
   min-width: 260px;
 }
 
 .panel-content p {
   margin: 0;
   color: var(--muted);
 }
 
 .form-section {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   padding: 30px 6vw 60px;
 }
 
 .form-wrapper {
   flex: 2 1 340px;
   background: #fff;
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-wrapper form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d2c8c1;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .sticky-cta {
   position: sticky;
   top: 20px;
   align-self: flex-start;
   flex: 1 1 220px;
   background: var(--sand);
   border-radius: 22px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 footer {
   padding: 30px 6vw 50px;
   background: #1e1d22;
   color: #f5f1ec;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 footer a {
   color: #f5f1ec;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .disclaimer {
   font-size: 0.85rem;
   color: #cfc8bf;
 }
 
 .page-hero {
   padding: 36px 6vw;
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   align-items: center;
 }
 
 .page-hero .image-frame img {
   height: 320px;
 }
 
 .legal {
   padding: 20px 6vw 60px;
   max-width: 900px;
 }
 
 .legal h1 {
   margin-top: 0;
 }
 
 .legal h2 {
   margin-bottom: 6px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   background: #1e1d22;
   color: #fff;
   padding: 14px 18px;
   border-radius: 16px;
   display: none;
   gap: 14px;
   align-items: center;
   max-width: 90vw;
   flex-wrap: wrap;
   z-index: 10;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   background: #fff;
   color: #1e1d22;
   border: none;
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-actions button.reject {
   background: #cfc8bf;
 }
 
 @media (max-width: 820px) {
   .hero {
     padding: 36px 24px;
   }
 
   .page-hero .image-frame img,
   .image-frame.tall img {
     height: 260px;
   }
 }
