 :root {
   color-scheme: light;
   --ink: #1f1f24;
   --muted: #5a5a66;
   --panel: #f5f1ea;
   --accent: #845d42;
   --accent-soft: #d8c2ad;
   --line: #e1d7cc;
   --bg: #fcfaf7;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.55;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img.media {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .site-header {
   padding: 24px 6vw 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 600;
   letter-spacing: 0.6px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 14px;
 }
 
 .disclosure {
   font-size: 12px;
   color: var(--muted);
   max-width: 220px;
   text-align: right;
 }
 
 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 12px 6vw 60px;
 }
 
 .intro-block {
   display: flex;
   gap: 28px;
   align-items: flex-start;
   flex-wrap: wrap;
 }
 
 .intro-text {
   flex: 1 1 320px;
   max-width: 520px;
 }
 
 .intro-visual {
   flex: 1 1 260px;
   min-width: 260px;
   max-width: 360px;
   height: 280px;
   background-color: var(--accent-soft);
   border-radius: 20px;
   overflow: hidden;
   transform: translateY(12px);
 }
 
 .hero-panel {
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   min-height: 340px;
   padding: 40px;
   border-radius: 28px;
   background-color: #d2c4b4;
   color: #1b1a18;
   background-image: url("https://images.unsplash.com/photo-1479839672679-a46483c0e7c8?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .hero-panel p {
   max-width: 560px;
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .cta-button,
 .cta-outline {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   font-size: 14px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cta-button {
   background: var(--accent);
   color: #fff;
 }
 
 .cta-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .asym-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }
 
 .asym-card {
   flex: 1 1 280px;
   background: var(--panel);
   padding: 26px;
   border-radius: 22px;
   border: 1px solid var(--line);
 }
 
 .asym-card.shift {
   transform: translateY(22px);
 }
 
 .asym-image {
   flex: 1 1 280px;
   min-height: 280px;
   border-radius: 24px;
   overflow: hidden;
   background-color: #cbb8a6;
 }
 
 .service-grid {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 220px;
   min-width: 220px;
   background: #fff;
   border-radius: 22px;
   padding: 18px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-image {
   height: 150px;
   border-radius: 16px;
   overflow: hidden;
   background-color: #d9c8ba;
 }
 
 .price {
   font-weight: 600;
 }
 
 .process-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .process-text {
   flex: 1 1 320px;
 }
 
 .sticky-cta {
   flex: 0 1 220px;
   align-self: flex-start;
   position: sticky;
   top: 20px;
   background: var(--panel);
   border-radius: 20px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .form-section {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: flex-start;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background: #fff;
   border-radius: 24px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .form-panel form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   font-size: 14px;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-family: inherit;
 }
 
 .form-note {
   font-size: 13px;
   color: var(--muted);
 }
 
 .testimonial {
   background: var(--panel);
   padding: 18px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .footer {
   padding: 24px 6vw 40px;
   border-top: 1px solid var(--line);
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 16px;
   max-width: 320px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
   z-index: 100;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .split-band {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: center;
 }
 
 .split-band .band-image {
   flex: 1 1 280px;
   min-height: 260px;
   border-radius: 20px;
   overflow: hidden;
   background-color: #d3c6b8;
 }
 
 .split-band .band-text {
   flex: 1 1 320px;
 }
 
 .background-section {
   border-radius: 26px;
   padding: 34px;
   color: #f7f1ea;
   background-color: #6a4b3b;
   background-size: cover;
   background-position: center;
 }
 
 .bg-index {
   background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
 }
 
 .bg-about {
   background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
 }
 
 .bg-services {
   background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
 }
 
 .legal-wrap {
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 820px;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
 }
 
 .contact-card {
   flex: 1 1 260px;
   padding: 20px;
   background: var(--panel);
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .table-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   justify-content: space-between;
   gap: 16px;
   background: #fff;
   padding: 12px 16px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .service-detail {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   align-items: stretch;
 }
 
 .service-detail .detail-text {
   flex: 1 1 320px;
 }
 
 .service-detail .detail-image {
   flex: 1 1 260px;
   min-height: 240px;
   border-radius: 20px;
   overflow: hidden;
   background-color: #cab6a4;
 }
 
 .simple-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .thanks-card {
   background: var(--panel);
   border-radius: 24px;
   padding: 30px;
   border: 1px solid var(--line);
   max-width: 640px;
 }
 
 .thanks-image {
   max-width: 480px;
 }
