 :root {
   --bg: #f7f3ee;
   --ink: #1f1c1a;
   --muted: #5e5750;
   --accent: #7a5c3a;
   --accent-light: #c9b29a;
   --paper: #ffffff;
   --sand: #efe6dc;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 6vw;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid rgba(0, 0, 0, 0.08);
   background: var(--paper);
 }
 
 .brand {
   font-size: 20px;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .nav-group {
   display: flex;
   gap: 18px;
   align-items: center;
   font-size: 14px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 .page {
   padding: 42px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 48px;
 }
 
 .magazine-row {
   display: flex;
   gap: 36px;
   flex-wrap: wrap;
 }
 
 .col-wide {
   flex: 1 1 56%;
   min-width: 280px;
 }
 
 .col-narrow {
   flex: 1 1 36%;
   min-width: 240px;
 }
 
 .panel {
   background: var(--paper);
   padding: 28px;
   border-radius: 18px;
   box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
 }
 
 .panel-muted {
   background: var(--sand);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 12px;
   color: var(--muted);
 }
 
 h1, h2, h3 {
   font-weight: 600;
 }
 
 h1 {
   font-size: 34px;
   margin: 12px 0 12px;
 }
 
 h2 {
   font-size: 26px;
   margin-bottom: 12px;
 }
 
 h3 {
   font-size: 20px;
   margin-bottom: 10px;
 }
 
 p {
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .btn {
   padding: 12px 20px;
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   font-size: 14px;
   border: none;
   cursor: pointer;
 }
 
 .btn-secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .btn:hover,
 .btn-secondary:hover,
 .ghost-link:hover {
   opacity: 0.85;
 }
 
 .ghost-link {
   padding: 12px 0;
   color: var(--accent);
   font-weight: 600;
 }
 
 .image-frame {
   background-color: var(--accent-light);
   border-radius: 16px;
   overflow: hidden;
 }
 
 .top-gap {
   margin-top: 18px;
 }
 
 .hero-image {
   min-height: 320px;
 }
 
 .service-grid {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: var(--paper);
   border-radius: 16px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   min-width: 220px;
 }
 
 .service-card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--ink);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .story-strip {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .full-bleed {
   padding: 40px;
   border-radius: 20px;
   color: #fff;
   min-height: 240px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   background-color: #6d5846;
   background-size: cover;
   background-position: center;
 }
 
 .bg-material {
   background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1400&q=80");
 }
 
 .full-bleed p {
   color: #f2f0ed;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-size: 13px;
   color: var(--muted);
 }
 
 input, select, textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid rgba(0, 0, 0, 0.15);
   font-size: 14px;
 }
 
 .form-note {
   font-size: 12px;
   color: var(--muted);
 }
 
 .footer {
   padding: 40px 6vw;
   background: var(--paper);
   border-top: 1px solid rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 16px;
   font-size: 13px;
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-size: 14px;
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   background: var(--paper);
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
   max-width: 320px;
   z-index: 30;
   display: none;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .legal-section {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .contact-card {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--paper);
   padding: 24px;
   border-radius: 16px;
 }
 
 .two-col {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .two-col > div {
   flex: 1 1 280px;
 }
 
 .simple-hero {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .simple-hero .image-frame {
   flex: 1 1 320px;
 }
 
 .breadcrumbs {
   font-size: 13px;
   color: var(--muted);
 }
 
 .callout {
   background: var(--sand);
   padding: 20px;
   border-radius: 14px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .note-inline {
   font-size: 13px;
   color: var(--muted);
 }
