 :root {
   --ink: #1f1f1f;
   --muted: #5a5a5a;
   --bg: #f6f2ee;
   --accent: #2f5d62;
   --accent-soft: #e4ecec;
   --warm: #f3e5d6;
   --dark: #0f1b1d;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 input:focus,
 select:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 header {
   background: #fff;
   border-bottom: 1px solid #e8e1da;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   padding: 18px 6vw;
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
   padding: 4px 10px;
   border: 1px solid #ddd6ce;
   border-radius: 999px;
   background: #faf7f3;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
   min-height: 70vh;
   color: #fff;
   padding: 80px 6vw 60px;
   background-size: cover;
   background-position: center;
   position: relative;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
 }
 
 .hero-content {
   position: relative;
   max-width: 680px;
 }
 
 .hero h1 {
   font-size: 42px;
   margin: 0 0 16px;
 }
 
 .hero p {
   margin: 0 0 24px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid #e5e5e5;
 }
 
 .section {
   padding: 70px 6vw;
 }
 
 .section.alt {
   background: var(--bg);
 }
 
 .section.dark {
   background: var(--dark);
   color: #fff;
 }
 
 .split {
   display: flex;
   gap: 40px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text,
 .split .media {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background: #e6ded7;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .story-strip {
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding-left: 24px;
   border-left: 3px solid var(--accent);
 }
 
 .metrics {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .metric-card {
   flex: 1 1 180px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid #ece5dd;
 }
 
 .quote-row {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }
 
 .quote {
   flex: 1 1 260px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid #e7ded6;
 }
 
 .reveal {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   overflow: hidden;
   border: 1px solid #ede4db;
   display: flex;
   flex-direction: column;
 }
 
 .service-card .body {
   padding: 18px;
 }
 
 .price {
   font-weight: 700;
   margin-top: 10px;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 18px;
   padding: 28px;
   border: 1px solid #e7ded6;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .radio-group {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .radio-card {
   flex: 1 1 200px;
   padding: 12px;
   border: 1px solid #d9d0c7;
   border-radius: 12px;
   background: #faf7f3;
 }
 
 .input-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #cfc6bd;
   width: 100%;
 }
 
 .sticky-cta {
   position: sticky;
   top: 18px;
   align-self: flex-start;
   background: #fff;
   border: 1px solid #eadfd6;
   border-radius: 16px;
   padding: 18px;
 }
 
 .cta-row {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 footer {
   background: #1c1c1c;
   color: #eaeaea;
   padding: 40px 6vw;
 }
 
 .footer-grid {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .footer-grid div {
   flex: 1 1 200px;
 }
 
 .footer-grid a {
   color: #eaeaea;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .banner {
   position: fixed;
   bottom: 24px;
   right: 24px;
   background: #fff;
   border: 1px solid #e6ddd4;
   border-radius: 16px;
   padding: 18px;
   max-width: 320px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   z-index: 10;
 }
 
 .banner.hidden {
   display: none;
 }
 
 .banner-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .hero-note {
   font-size: 14px;
   opacity: 0.85;
 }
 
 .background-block {
   background-size: cover;
   background-position: center;
   border-radius: 18px;
   padding: 40px;
   color: #fff;
 }
 
 .hero-furniture {
   background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
   background-color: #3a3a3a;
 }
 
 .background-craft {
   background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80");
   background-color: #51463f;
 }
 
 .reveal-spacing {
   margin-top: 28px;
 }
 
 .page-hero {
   padding: 60px 6vw 40px;
   background: var(--warm);
 }
 
 .simple-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .legal {
   max-width: 820px;
 }
