 :root {
   color-scheme: light;
   --bg: #f7f4f2;
   --text: #1d1b19;
   --muted: #6a6360;
   --accent: #9b4f63;
   --accent-dark: #7c3a4e;
   --soft: #efe7e2;
   --line: #e4d8d2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   padding: 24px 0 10px;
   border-bottom: 1px solid var(--line);
   background: #faf7f5;
 }
 
 .topline {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-size: 20px;
   font-weight: 600;
   letter-spacing: 0.2px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   background: #f1e9e5;
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .nav {
   margin-top: 14px;
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 14px;
 }
 
 .nav a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav a:hover,
 .nav a:focus {
   border-color: var(--accent);
 }
 
 .hero {
   position: relative;
   margin-top: 24px;
   overflow: hidden;
   border-radius: 28px;
   background: #e9dfd9;
 }
 
 .hero img {
   width: 100%;
   height: 520px;
   object-fit: cover;
   display: block;
 }
 
 .hero-content {
   position: absolute;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   padding: 48px;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
   color: #fff;
 }
 
 .hero-content h1 {
   margin: 0 0 12px;
   font-size: clamp(32px, 4vw, 48px);
 }
 
 .hero-content p {
   margin: 0 0 20px;
   max-width: 560px;
   line-height: 1.5;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-size: 14px;
   font-weight: 600;
 }
 
 .btn.outline {
   background: transparent;
   color: var(--accent);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.soft {
   background: var(--soft);
 }
 
 .section h2 {
   margin: 0 0 16px;
   font-size: 28px;
 }
 
 .section p {
   margin: 0 0 14px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .split {
   display: flex;
   gap: 32px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text {
   flex: 1 1 320px;
 }
 
 .split .media {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background: #e7dcd6;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   display: block;
 }
 
 .tiles {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .tile {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .tile img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 12px;
 }
 
 .tile h3 {
   margin: 0;
   font-size: 18px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   padding: 18px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .form-card {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 14px;
   font-weight: 600;
 }
 
 select,
 input,
 textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   background: #fff;
   font-size: 14px;
 }
 
 .cta-inline {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .sticky-cta {
   position: sticky;
   top: 18px;
   align-self: flex-start;
   background: #fff;
   border: 1px solid var(--line);
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer {
   padding: 40px 0;
   border-top: 1px solid var(--line);
   background: #faf7f5;
   font-size: 14px;
   color: var(--muted);
 }
 
 .footer .links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 16px;
   max-width: 340px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
   flex-wrap: wrap;
 }
 
 .page-hero {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   padding: 40px 0;
   flex-wrap: wrap;
 }
 
 .page-hero img {
   width: 420px;
   height: 260px;
   object-fit: cover;
   border-radius: 18px;
   background: #e7dcd6;
 }
 
 .notice {
   background: #fff7f0;
   border: 1px solid #f3dcc7;
   padding: 16px;
   border-radius: 12px;
   color: #6b3b1f;
 }
 
 .reference-list a {
   color: var(--accent-dark);
   text-decoration: underline;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
