 :root {
   --ink: #1b1b1b;
   --muted: #5c6166;
   --accent: #1f5f6b;
   --accent-soft: #e8f1f3;
   --sand: #f3f0eb;
   --sage: #e6efe3;
   --steel: #e1e7ec;
   --charcoal: #2c2f33;
   --line: #d6d9dc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
 }
 
 header {
   display: flex;
   flex-direction: column;
   padding: 24px 6vw 12px 6vw;
   gap: 12px;
 }
 
 .top-row {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand strong {
   font-size: 1.4rem;
 }
 
 .ad-label {
   font-size: 0.85rem;
   background: var(--accent-soft);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 nav {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
 }
 
 .nav-split {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   gap: 24px;
 }
 
 .hero {
   display: flex;
   flex-direction: row;
   align-items: stretch;
   gap: 32px;
   padding: 24px 6vw 48px 6vw;
 }
 
 .hero-text {
   display: flex;
   flex-direction: column;
   gap: 20px;
   flex: 1.2;
 }
 
 .hero-visual {
   flex: 1;
   min-height: 320px;
   background-color: var(--steel);
   background-size: cover;
   background-position: center;
   border-radius: 24px;
   position: relative;
 }
 
 .hero-visual.workwear-hero {
   background-image: url("https://images.unsplash.com/photo-1741183392566-6691041a231f?w=1400&q=80");
 }
 
 .hero-visual .overlay-note {
   position: absolute;
   bottom: 18px;
   left: 18px;
   background: rgba(255, 255, 255, 0.85);
   padding: 10px 14px;
   border-radius: 14px;
   font-size: 0.9rem;
 }
 
 .cta-row {
   display: flex;
   flex-direction: row;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .btn {
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .inline-cta {
   font-weight: 600;
   color: var(--accent);
 }
 
 .section {
   padding: 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.asym {
   display: flex;
   flex-direction: row;
   gap: 32px;
   align-items: center;
 }
 
 .section.asym.reverse {
   flex-direction: row-reverse;
 }
 
 .block {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .offset-card {
   background: #ffffff;
   border-radius: 18px;
   padding: 22px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   margin-top: -24px;
 }
 
 .image-frame {
   background: var(--sand);
   border-radius: 18px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .cover {
   object-fit: cover;
 }
 
 .cards {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 16px;
 }
 
 .card img {
   border-radius: 12px;
   object-fit: cover;
 }
 
 .trust-bar {
   display: flex;
   flex-direction: row;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .trust-pill {
   background: var(--sage);
   padding: 12px 16px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .story {
   background: var(--accent-soft);
 }
 
 .story.photo-woven {
   background-image: url("https://images.unsplash.com/photo-1772351721310-0aa6b2d5ee49?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .lab {
   background: var(--steel);
 }
 
 .lab.photo-line {
   background-image: url("https://images.unsplash.com/photo-1741176505800-caaa3a52631a?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .pricing {
   background: var(--sand);
 }
 
 .pricing.photo-textile {
   background-image: url("https://images.unsplash.com/photo-1526290766257-c015850e4629?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .form-wrap {
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border: 1px solid var(--line);
   border-radius: 10px;
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 12px;
   margin: 0 6vw 20px 6vw;
   padding: 14px 18px;
   background: var(--charcoal);
   color: #ffffff;
   border-radius: 16px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 footer {
   padding: 32px 6vw 48px 6vw;
   background: #f8f8f8;
   display: flex;
   flex-direction: column;
   gap: 12px;
   font-size: 0.9rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .two-col {
   display: flex;
   flex-direction: row;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .two-col > div {
   flex: 1 1 260px;
 }
 
 .notice {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   z-index: 10;
 }
 
 .banner-actions {
   display: flex;
   flex-direction: row;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .legal-hero {
   padding: 36px 6vw 20px 6vw;
   background: var(--accent-soft);
 }
 
 .legal-body {
   padding: 24px 6vw 40px 6vw;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (max-width: 900px) {
   .hero,
   .section.asym,
   .section.asym.reverse {
     flex-direction: column;
   }
 
   .top-row,
   .nav-split {
     flex-direction: column;
     align-items: flex-start;
   }
 }
