 :root {
   color-scheme: light;
   --ink: #1f2a31;
   --soft-ink: #2f3b44;
   --sand: #f6f1ea;
   --clay: #e6d9cb;
   --mist: #eef3f6;
   --accent: #a24b2a;
   --accent-dark: #7f3a20;
   --leaf: #3b5d4a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #fcfbf9;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 24px 6vw 8px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 700;
   letter-spacing: 0.6px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--soft-ink);
   background: var(--mist);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 14px;
 }
 
 .nav-links a {
   padding: 6px 2px;
   border-bottom: 2px solid transparent;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   align-items: stretch;
   padding: 18px 6vw 48px;
   gap: 28px;
 }
 
 .hero-image {
   flex: 1 1 360px;
   min-height: 320px;
   background: var(--clay);
   border-radius: 20px;
   overflow: hidden;
 }
 
 .hero-content {
   flex: 1 1 320px;
   align-self: center;
   padding: 10px 10px 10px 0;
 }
 
 .hero h1 {
   font-size: clamp(32px, 3.6vw, 52px);
   margin: 0 0 16px;
 }
 
 .hero p {
   margin: 0 0 22px;
   font-size: 17px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-size: 15px;
   cursor: pointer;
 }
 
 .button.secondary {
   background: var(--leaf);
 }
 
 .section {
   padding: 54px 6vw;
 }
 
 .section.asym {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: center;
 }
 
 .section .intro {
   max-width: 520px;
 }
 
 .offset-card {
   background: #fff;
   border-radius: 18px;
   padding: 24px;
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
 }
 
 .offset-card.shifted {
   margin-left: auto;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
.card-row.spaced {
  margin-top: 24px;
}

.spaced-top {
  margin-top: 22px;
}

 .card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .price-tag {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .badge {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--leaf);
 }
 
 .quote {
   font-style: italic;
   margin: 0;
 }
 
 .inline-image {
   flex: 1 1 260px;
   min-height: 260px;
   background: var(--mist);
   border-radius: 20px;
   overflow: hidden;
 }
 
 .bg-atelier {
   background: var(--sand);
   background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .bg-atelier .offset-card {
   background: rgba(255, 255, 255, 0.92);
   color: var(--ink);
 }
 
 .story-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 26px;
 }
 
 .story-block {
   flex: 1 1 260px;
   padding: 18px 20px;
   border-left: 4px solid var(--accent);
   background: #fff;
   border-radius: 8px 18px 18px 8px;
 }
 
 .cta-strip {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   background: var(--ink);
   color: #fff;
   padding: 30px 6vw;
 }
 
 .cta-strip a.button {
   background: #fff;
   color: var(--ink);
 }
 
 .footer {
   padding: 36px 6vw 60px;
   background: #1b2024;
   color: #e8edf2;
   margin-top: auto;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin: 18px 0;
 }
 
 .footer small {
   display: block;
   color: #c2c9cf;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 24px;
   right: 24px;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent-dark);
   color: #fff;
   font-size: 14px;
   z-index: 30;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .service-item {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   align-items: center;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
 }
 
 .service-item:nth-child(2n) {
   flex-direction: row-reverse;
 }
 
 .service-item .inline-image {
   flex: 1 1 220px;
   min-height: 220px;
 }
 
 .service-copy {
   flex: 1 1 260px;
 }
 
 .form-shell {
   background: var(--mist);
   padding: 28px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-shell label {
   font-size: 14px;
   color: var(--soft-ink);
 }
 
 .form-shell input,
 .form-shell select {
   width: 100%;
   padding: 10px 12px;
   border: 1px solid #cfd6dc;
   border-radius: 10px;
   font-size: 15px;
 }
 
 .form-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .form-row > div {
   flex: 1 1 200px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   right: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 18px;
   padding: 18px 20px;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
   display: none;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-actions button {
   border: none;
 }
 
 .legal {
   max-width: 760px;
 }
 
 .bg-script {
   background-color: #e8ecef;
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .bg-script .intro {
   color: #fff;
 }
 
 .bg-bright {
   background: var(--mist);
 }
 
 .bg-deep {
   background: #20252a;
   color: #f0f4f7;
 }
 
 .bg-deep a {
   color: #fff;
 }
 
 .image-frame {
   background-color: #dfe6ea;
 }
 
 @media (max-width: 720px) {
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
