 :root {
   --ink: #1d1b1a;
   --muted: #5a5754;
   --paper: #f7f3ef;
   --sand: #ece4da;
   --clay: #d8c6b4;
   --accent: #8f5f3c;
   --accent-dark: #6f4426;
   --mist: #f1ece7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--accent-dark);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .top-bar {
   padding: 20px 40px 10px;
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
 }
 
 .disclosure {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .hero {
   display: flex;
   gap: 30px;
   padding: 40px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 18px;
 }
 
 .hero-visual {
   flex: 0.9;
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-visual .image-frame {
   background: var(--clay);
   padding: 10px;
   border-radius: 18px;
 }
 
 .hero-visual .image-frame.offset {
   transform: translateX(-30px);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .btn:hover {
   background: var(--accent-dark);
 }
 
 .btn.secondary:hover {
   background: var(--accent-dark);
   color: #fff;
 }
 
 .section {
   padding: 60px 40px;
 }
 
 .section.light {
   background: var(--mist);
 }
 
 .section.sand {
   background: var(--sand);
 }

.archive-backdrop {
  background-color: #f2ebe4;
  background-image: url("https://images.unsplash.com/photo-1762627105132-f6ed848a23bf?w=1400&q=80");
  background-size: cover;
  background-position: center;
}
 
 .section .section-inner {
   display: flex;
   gap: 30px;
   align-items: center;
 }
 
 .section .section-inner.stack {
   flex-direction: column;
   align-items: flex-start;
 }
 
 .section .section-inner.shift-right {
   justify-content: flex-end;
 }
 
 .split-card {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: 0 12px 30px rgba(36, 23, 15, 0.08);
   display: flex;
   gap: 20px;
   align-items: center;
 }
 
 .split-card .card-text {
   flex: 1;
 }
 
 .split-card .image-frame {
   flex: 1;
   background: var(--clay);
   padding: 8px;
   border-radius: 16px;
 }
 
 .floating-note {
   background: #fff;
   border-radius: 14px;
   padding: 18px;
   max-width: 380px;
   margin-top: -40px;
   margin-left: auto;
   box-shadow: 0 10px 25px rgba(25, 19, 14, 0.12);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   box-shadow: 0 10px 24px rgba(30, 21, 15, 0.08);
 }
 
 .service-card .image-frame {
   background: var(--clay);
   border-radius: 12px;
   padding: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .select-service {
   align-self: flex-start;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .timeline-step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .timeline-step span {
   font-weight: 700;
   color: var(--accent-dark);
   min-width: 38px;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 22px;
   padding: 30px;
   box-shadow: 0 14px 32px rgba(30, 21, 15, 0.12);
   display: flex;
   flex-direction: column;
   gap: 18px;
   width: 100%;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc5bb;
   font-family: inherit;
   font-size: 0.95rem;
 }
 
 textarea {
   min-height: 90px;
   resize: vertical;
 }
 
 .form-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .testimonial-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .testimonial {
   background: #fff;
   border-radius: 14px;
   padding: 16px;
   flex: 1 1 220px;
   box-shadow: 0 10px 22px rgba(30, 21, 15, 0.08);
 }
 
 .footer {
   padding: 40px;
   background: #161412;
   color: #f7f0e8;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer a {
   color: #f7f0e8;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 0.9rem;
   z-index: 20;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .sticky-cta:hover {
   background: var(--accent-dark);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 420px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 14px 30px rgba(30, 21, 15, 0.18);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .legal-block {
   background: #fff;
   border-radius: 16px;
   padding: 22px;
   box-shadow: 0 10px 24px rgba(30, 21, 15, 0.08);
 }
 
 .asym-row {
   display: flex;
   gap: 26px;
   align-items: flex-start;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-row .image-frame {
   background: var(--clay);
   padding: 8px;
   border-radius: 18px;
   flex: 1;
 }
 
 .asym-row .text-block {
   flex: 1;
 }
 
 @media (max-width: 960px) {
   .hero,
   .section .section-inner,
   .asym-row {
     flex-direction: column;
   }
 
   .hero-visual .image-frame.offset {
     transform: none;
   }
 
   .top-bar {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     position: static;
     margin: 10px 40px 40px;
   }
 }
