 :root {
   --ink: #1f1e1c;
   --muted: #5d5a55;
   --accent: #6a3f2a;
   --accent-2: #2e5d72;
   --light: #f5f1ea;
   --card: #ffffff;
   --line: #e3ddd4;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--light);
   line-height: 1.6;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 header {
   padding: 20px 6vw 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--accent-2);
   border: 1px solid var(--accent-2);
   padding: 6px 10px;
   border-radius: 999px;
   background: #e7f0f4;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .nav-links a {
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   border-bottom: 2px solid var(--accent);
 }
 
 main {
   flex: 1;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 32px;
   padding: 40px 6vw;
   align-items: stretch;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-text,
 .split-visual {
   flex: 1 1 320px;
   min-width: 280px;
 }
 
 .hero {
   background: #efe9df;
   position: relative;
 }
 
 .hero .split-visual {
   min-height: 320px;
 }
 
 .hero-image {
   height: 100%;
   border-radius: 18px;
   overflow: hidden;
   background: #cfc7bb;
 }
 
 .hero h1 {
   font-size: 2.6rem;
   margin: 0 0 14px;
 }
 
 .hero p {
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .inline-link {
   text-decoration: underline;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--card);
   border-radius: 16px;
   border: 1px solid var(--line);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-image {
   height: 180px;
   background: #e1d6c7;
 }
 
 .card-body {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .highlight {
   background: #fdf6ec;
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
 }

 .heritage-bg {
   background-image: url("https://images.unsplash.com/photo-1534842471718-d2c5afe852af?w=1400&q=80");
  background-color: #4a3f39;
   background-size: cover;
   background-position: center;
   color: #ffffff;
   position: relative;
 }

 .heritage-bg::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(31, 30, 28, 0.55);
 }

 .heritage-bg .split-text,
 .heritage-bg .split-visual {
   position: relative;
   z-index: 1;
 }

 .atelier-bg {
   background-image: url("https://images.unsplash.com/photo-1447858496759-dd23e166e1c5?w=1400&q=80");
  background-color: #2a2f33;
   background-size: cover;
   background-position: center;
   color: #ffffff;
   position: relative;
 }

 .atelier-bg::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(32, 45, 54, 0.6);
 }

 .atelier-bg .split-text,
 .atelier-bg .split-visual {
   position: relative;
   z-index: 1;
 }
 
 .process-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .process-step {
   padding: 14px;
   background: #fff;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .form-shell {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 24px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #c9c3b8;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .footer {
   padding: 30px 6vw 50px;
   background: #efe9df;
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-between;
 }
 
 .footer small {
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 20px;
   background: var(--accent-2);
   color: #fff;
   padding: 12px 16px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   max-width: 360px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   border: 1px solid var(--accent);
   padding: 8px 12px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cookie-actions button.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .notice {
   padding: 16px;
   border-radius: 14px;
   border: 1px dashed var(--accent-2);
   background: #f0f6f8;
 }
 
 .image-wrap {
   background: #d8d1c6;
   border-radius: 14px;
   overflow: hidden;
   height: 100%;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 12px;
 }
 
 .two-column {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .two-column > div {
   flex: 1 1 280px;
 }
 
 @media (max-width: 768px) {
   .hero h1 {
     font-size: 2rem;
   }
 
   .sticky-cta {
     right: 14px;
     bottom: 14px;
   }
 }
