 :root {
   --ink: #1f2a32;
   --coal: #2c3a44;
   --sand: #f6f1eb;
   --mist: #edf2f4;
   --clay: #d9c3b2;
   --sage: #b7c9c1;
   --accent: #c26b4e;
   --accent-dark: #9e523c;
   --shadow: rgba(31, 42, 50, 0.1);
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--sand);
   line-height: 1.6;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img {
   display: block;
 }

 .wrapper {
   width: min(1200px, 92vw);
   margin: 0 auto;
 }

 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 0;
   gap: 16px;
 }

 .brand {
   font-size: 1.4rem;
   letter-spacing: 0.02em;
   font-weight: 600;
 }

 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }

 .ad-label {
   padding: 6px 10px;
   background: var(--mist);
   border-radius: 999px;
   font-size: 0.8rem;
 }

 .hero {
   display: flex;
   gap: 40px;
   align-items: stretch;
   padding: 30px 0 60px;
 }

 .hero-text {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   gap: 28px;
 }

 .hero-title {
   font-size: clamp(2.2rem, 4vw, 3.4rem);
   margin: 0;
 }

 .hero-card {
   background: var(--mist);
   padding: 20px;
   border-radius: 18px;
   box-shadow: 0 16px 30px var(--shadow);
 }

 .hero-media {
   flex: 0.9;
   align-self: center;
 }

 .img-frame {
   background: var(--clay);
   border-radius: 18px;
   overflow: hidden;
 }

 .img-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .hero-media .img-frame {
   height: 430px;
 }

 .frame-320 {
   height: 320px;
 }

 .frame-300 {
   height: 300px;
 }

 .frame-280 {
   height: 280px;
 }

 .split {
   display: flex;
   gap: 36px;
   align-items: center;
 }

 .split.reverse {
   flex-direction: row-reverse;
 }

 .section {
   padding: 70px 0;
 }

 .section-tight {
   padding: 40px 0;
 }

 .section-bg-story {
   background: linear-gradient(120deg, rgba(31, 42, 50, 0.85), rgba(31, 42, 50, 0.55)),
     url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }

 .section-bg-atelier {
   background: linear-gradient(120deg, rgba(246, 241, 235, 0.95), rgba(246, 241, 235, 0.8)),
     url("https://images.pexels.com/photos/5622924/pexels-photo-5622924.jpeg");
   background-size: cover;
   background-position: center;
 }

 .stacked-cards {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }

 .card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 18px 30px var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }

 .card-media {
   height: 160px;
 }

 .price-tag {
   font-size: 1.2rem;
   color: var(--accent-dark);
   font-weight: 600;
 }

 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }

 .btn {
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   cursor: pointer;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }

 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent-dark);
 }

 .btn.ghost {
   background: transparent;
   border-color: var(--ink);
   color: var(--ink);
 }

 .inline-link {
   color: var(--accent-dark);
   text-decoration: underline;
 }

 .offset-grid {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
 }

 .offset {
   flex: 1 1 280px;
   background: var(--mist);
   padding: 24px;
   border-radius: 20px;
   box-shadow: 0 12px 24px var(--shadow);
 }

 .offset.raise {
   margin-top: -30px;
 }

 .highlight {
   background: #fff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 14px 28px var(--shadow);
 }

 .form-shell {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   align-items: flex-start;
 }

 .form-box {
   flex: 1 1 320px;
   background: #fff;
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 16px 28px var(--shadow);
 }

 .form-box label {
   display: block;
   font-weight: 600;
   margin-bottom: 6px;
 }

 .form-box select,
 .form-box input,
 .form-box textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d6d6d6;
   margin-bottom: 16px;
   font-family: inherit;
 }

 .form-note {
   flex: 1 1 240px;
 }

 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 9;
 }

 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 16px 26px var(--shadow);
   max-width: 320px;
   display: none;
   z-index: 10;
 }

 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }

 .footer {
   background: var(--coal);
   color: #f9f7f3;
   padding: 50px 0;
   margin-top: 60px;
 }

 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }

 .footer-grid > div {
   flex: 1 1 220px;
 }

 .plain-email {
   font-weight: 600;
 }

 .legal-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .page-title {
   font-size: clamp(1.9rem, 3vw, 2.6rem);
   margin-bottom: 16px;
 }

 .simple-hero {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
   align-items: center;
 }

 .simple-hero .img-frame {
   height: 280px;
   flex: 1 1 280px;
 }

 .notice {
   background: var(--mist);
   padding: 18px;
   border-radius: 14px;
 }

 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }

 .service-row {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 20px;
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 12px 20px var(--shadow);
 }

 .service-row span {
   font-weight: 600;
   color: var(--accent-dark);
 }

 .thanks-box {
   background: #fff;
   padding: 32px;
   border-radius: 22px;
   box-shadow: 0 20px 32px var(--shadow);
 }

 @media (max-width: 860px) {
   .hero,
   .split {
     flex-direction: column;
   }

   .hero-media .img-frame {
     height: 320px;
   }

   .offset.raise {
     margin-top: 0;
   }
 }
