 :root {
   --bg: #f6f3ef;
   --ink: #1f1f1f;
   --muted: #5f5b57;
   --accent: #2e6e5d;
   --accent-2: #c7a27a;
   --card: #ffffff;
   --soft: #efe7dd;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6vw;
   background: #fff;
   border-bottom: 1px solid #e6e1da;
 }
 
 .nav-left {
   display: flex;
   align-items: center;
   gap: 18px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 12px;
   color: #7b3f34;
   background: #f5ddd5;
   padding: 4px 10px;
   border-radius: 999px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 14px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   padding: 40px 6vw 20px;
   gap: 28px;
   position: relative;
 }
 
 .hero-text {
   flex: 1 1 320px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   max-width: 520px;
 }
 
 .hero-media {
   flex: 1 1 320px;
   position: relative;
   background: #d8d2cb;
   padding: 12px;
 }
 
 .hero-media img {
   border-radius: 18px;
 }
 
 .hero-badge {
   position: absolute;
   top: -18px;
   right: 6vw;
   background: #fff7e9;
   padding: 10px 16px;
   border-radius: 12px;
   border: 1px solid #e7dac7;
   font-size: 13px;
 }
 
 .section {
   padding: 36px 6vw;
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .section-title {
   font-size: 24px;
   margin: 0;
 }
 
 .asym-row {
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
   align-items: stretch;
 }
 
 .asym-card {
   flex: 1 1 260px;
   background: var(--card);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
 }
 
 .asym-card.media {
   padding: 0;
   overflow: hidden;
   background: #d8d2cb;
 }
 
 .asym-card.media img {
   height: 100%;
 }
 
 .offset-block {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   border-left: 6px solid var(--accent);
   padding: 20px;
   max-width: 560px;
 }
 
 .floating-note {
   align-self: flex-end;
   background: #f2ede7;
   padding: 16px;
   border-radius: 14px;
   max-width: 320px;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 16px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card img {
   height: 180px;
 }
 
 .service-body {
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .callout {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
 }
 
 .callout img {
   width: 260px;
   height: 200px;
   border-radius: 18px;
   background: #d8d2cb;
 }
 
 .image-frame {
   background: #d8d2cb;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: #fff;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .form-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   align-items: stretch;
 }
 
 .form-panel {
   flex: 1 1 320px;
   background: #fff;
   padding: 22px;
   border-radius: 18px;
 }
 
 .form-panel form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 14px;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #ddd6ce;
   font-size: 15px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .footer {
   margin-top: auto;
   padding: 30px 6vw;
   background: #fff;
   border-top: 1px solid #e6e1da;
   display: flex;
   flex-direction: column;
   gap: 16px;
   font-size: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .plain-email {
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   z-index: 10;
 }
 
 .sticky-cta a {
   background: #1f4d40;
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #1f1f1f;
   color: #fff;
   padding: 16px 6vw;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .cookie-actions button {
   padding: 8px 14px;
   border-radius: 999px;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: #f5d07d;
 }
 
 .cookie-actions .reject {
   background: #ffffff;
 }
 
 .banner-hidden {
   display: none;
 }
 
 .section-bg {
   background: #d8d2cb;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .bg-hero-one {
   background-image: url("https://images.unsplash.com/photo-1504208434309-cb69f4fe52b0?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-soft-two {
   background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-quiet-three {
   background-image: url("https://images.unsplash.com/photo-1494256997604-768d1f608cac?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-legal-one {
   background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .split-band {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .split-band .band-text {
   flex: 1 1 280px;
 }
 
 .split-band .band-image {
   flex: 1 1 280px;
   background: #cfc7be;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
