 :root {
   color-scheme: light;
   --bg: #f6f2ee;
   --surface: #ffffff;
   --ink: #1f1c19;
   --muted: #6b625a;
   --accent: #b4542d;
   --accent-dark: #8e3e1f;
   --sage: #d9e0d2;
   --clay: #f1d6c6;
   --shadow: 0 24px 60px rgba(31, 28, 25, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   border-radius: 18px;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .nav-shell {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 24px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.25rem;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 2px;
   border-bottom: 1px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   padding: 0 24px 32px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   position: relative;
 }
 
 .hero-card::after {
   content: "";
   position: absolute;
   inset: -18px 24px auto auto;
   width: 120px;
   height: 120px;
   background: var(--clay);
   border-radius: 32px;
   z-index: -1;
 }
 
 .hero h1 {
   font-size: 2.3rem;
   line-height: 1.1;
   margin-bottom: 16px;
 }
 
 .hero p {
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn-outline {
   border-color: var(--accent);
   color: var(--accent);
   background: transparent;
 }
 
 .btn-ghost {
   background: #fff;
   border: 1px solid #eee3dc;
 }
 
 .section {
   padding: 0 24px;
 }
 
 .section-block {
   background: var(--surface);
   padding: 28px;
   border-radius: 28px;
   box-shadow: var(--shadow);
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 16px;
 }
 
 .section-intro {
   color: var(--muted);
   margin-bottom: 24px;
 }
 
 .offset {
   margin-left: 18px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #fff;
   padding: 20px;
   border-radius: 20px;
   border: 1px solid #f1e6de;
 }
 
 .card h3 {
   margin-bottom: 8px;
   font-size: 1.1rem;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--sage);
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.85rem;
   margin-bottom: 16px;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--accent-dark);
 }
 
 .form-shell {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .form-shell label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .form-shell input,
 .form-shell select,
 .form-shell textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #e4d7ce;
   font-size: 0.95rem;
   background: #fff;
 }
 
 .form-shell button {
   width: fit-content;
 }
 
 .inline-link {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 22px;
   right: 22px;
   z-index: 20;
 }
 
 .sticky-cta a {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   background: var(--accent-dark);
   color: #fff;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-size: 0.9rem;
 }
 
 .footer {
   padding: 32px 24px 40px;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 12px;
 }
 
 .banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 90px;
   background: #fff;
   border-radius: 20px;
   padding: 16px;
   box-shadow: var(--shadow);
   z-index: 30;
 }
 
 .banner-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .banner-actions button {
   border: 1px solid #e4d7ce;
   background: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .banner-actions .accept {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .hero-visual {
   position: relative;
 }
 
 .hero-visual .overlay-tag {
   position: absolute;
   bottom: -12px;
   left: 18px;
   background: #fff;
   padding: 10px 16px;
   border-radius: 14px;
   font-size: 0.85rem;
   box-shadow: var(--shadow);
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .map-card {
   background: var(--surface);
   padding: 20px;
   border-radius: 20px;
   border: 1px solid #efe4dd;
 }
 
 .notice {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 @media (min-width: 860px) {
   .page {
     gap: 70px;
   }
 
   .nav-shell {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 32px 80px 0;
   }
 
   .hero {
     padding: 0 80px 40px;
   }
 
   .hero-inner,
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1.1;
   }
 
   .hero-visual {
     flex: 0.9;
     margin-top: 30px;
   }
 
   .section {
     padding: 0 80px;
   }
 
   .section-block {
     padding: 40px;
   }
 
   .card-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 220px;
   }
 
   .pricing-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .pricing-grid .card {
     flex: 1 1 260px;
   }
 
   .form-shell {
     max-width: 420px;
   }
 
   .banner {
     left: auto;
     right: 40px;
     width: 320px;
   }
 }
