/* ==========================================================================
   Stitcher Sourcing - Main Stylesheet
   Organized for maintainability, readability, and production handoff.
   ========================================================================== */

/* ===== Accessibility ===== */
.skip-link  {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}
.skip-link:focus  {
  transform: translateY(0);
}
:focus-visible  {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.no-js .reveal  {
  opacity: 1;
  transform: none;
}
:root {
  --ink:#101816;
  --muted:#65706d;
  --cream:#f4f1e9;
  --paper:#fff;
  --green:#b9ff4f;
  --forest:#153c32;
  --line:#dce2df;
  --orange:#ff6b35;
  --shadow:0 24px 80px rgba(16,24,22,.12);
  --radius:22px;
  --font-head:'Manrope',sans-serif;
  --font-body:'DM Sans',sans-serif
}
* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  color:var(--ink);
  font-family:var(--font-body);
  background:var(--paper);
  line-height:1.6
}
body.menu-open {
  overflow:hidden
}
img {
  width:100%;
  display:block
}
a {
  color:inherit;
  text-decoration:none
}
button,input,textarea,select {
  font:inherit
}
.container {
  width:min(1180px,calc(100% - 40px));
  margin:auto
}
.site-header {
  position:fixed;
  inset:0 0 auto;
  z-index:40;
  transition:.35s ease;
  color:#fff
}
.site-header.scrolled,.site-header.open {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  color:var(--ink);
  box-shadow:0 1px 0 rgba(16,24,22,.08)
}
.nav-wrap {
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.brand {
  display:flex;
  align-items:center;
  gap:11px;
  font-family:var(--font-head)
}
.brand-mark {
  width:42px;
  height:42px;
  display:block;
  object-fit:contain;
  background:transparent;
  border-radius:0;
  padding:0;
  flex:0 0 42px
}
.brand b {
  font-size:20px;
  display:block;
  line-height:1
}
.brand small {
  display:block;
  font-size:9px;
  letter-spacing:3.3px;
  margin-top:5px
}
.nav-links {
  display:flex;
  gap:34px;
  font-size:14px;
  font-weight:600
}
.nav-links a {
  position:relative
}
.nav-links a:after {
  content:'';
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  background:var(--green);
  transition:.3s
}
.nav-links a:hover:after {
  width:100%
}
.nav-actions {
  display:flex;
  align-items:center;
  gap:12px
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border:0;
  border-radius:100px;
  padding:14px 23px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease
}
.btn:hover {
  transform:translateY(-2px)
}
.btn-primary {
  background:var(--green);
  color:var(--ink);
  box-shadow:0 10px 30px rgba(185,255,79,.22)
}
.btn-light {
  background:#fff;
  color:var(--ink)
}
.btn-outline {
  border:1px solid var(--ink);
  background:transparent
}
.btn-ghost {
  padding:11px 20px;
  border:1px solid rgba(255,255,255,.5)
}
.site-header.scrolled .btn-ghost,.site-header.open .btn-ghost {
  border-color:var(--line)
}
.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  padding:10px
}
.menu-toggle span {
  display:block;
  height:2px;
  background:currentColor;
  margin:7px 0;
  transition:.3s
}
.hero {
  min-height:790px;
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:#0b1d18
}
.hero-media {
  position:absolute;
  inset:0;
  background:url('../images/hero.webp') center 35%/cover;
  animation:heroZoom 16s ease-in-out infinite alternate
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(4,17,13,.9) 0%,rgba(4,17,13,.68) 45%,rgba(4,17,13,.15) 100%),linear-gradient(0deg,rgba(4,17,13,.5),transparent 45%)
}
@keyframes heroZoom {
  to {
    transform:scale(1.07)
  }
}
.hero-content {
  position:relative;
  z-index:3;
  padding-top:75px
}
.eyebrow,.section-label {
  text-transform:uppercase;
  letter-spacing:2.7px;
  font-size:12px;
  font-weight:700
}
.eyebrow {
  color:var(--green);
  display:flex;
  align-items:center;
  gap:12px
}
.eyebrow:before {
  content:'';
  width:34px;
  height:1px;
  background:currentColor
}
.hero h1,.page-hero h1 {
  font:800 clamp(58px,7vw,108px)/.92 var(--font-head);
  letter-spacing:-6px;
  margin:25px 0
}
.hero p {
  max-width:620px;
  font-size:19px;
  color:rgba(255,255,255,.76);
  line-height:1.7
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:35px
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:13px;
  font-weight:700
}
.text-link span {
  transition:.25s
}
.text-link:hover span {
  transform:translateX(5px)
}
.text-link.dark {
  color:var(--ink);
  margin-top:25px
}
.hero-proof {
  display:flex;
  gap:45px;
  margin-top:70px
}
.hero-proof div {
  display:flex;
  gap:12px;
  align-items:center
}
.hero-proof strong {
  font:700 28px var(--font-head)
}
.hero-proof span {
  font-size:12px;
  max-width:100px;
  color:rgba(255,255,255,.68);
  line-height:1.4
}
.scroll-cue {
  position:absolute;
  z-index:3;
  right:36px;
  bottom:50px;
  writing-mode:vertical-rl;
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  display:flex;
  gap:12px;
  align-items:center;
  color:rgba(255,255,255,.6)
}
.scroll-cue span {
  height:50px;
  width:1px;
  background:rgba(255,255,255,.4);
  position:relative;
  overflow:hidden
}
.scroll-cue span:after {
  content:'';
  position:absolute;
  width:1px;
  height:20px;
  background:var(--green);
  left:0;
  animation:scrollCue 2s infinite
}
@keyframes scrollCue {
  from {
    top:-20px
  }
  to {
    top:55px
  }
}
.hero-orb {
  position:absolute;
  border-radius:50%;
  border:1px solid rgba(185,255,79,.2);
  z-index:2;
  animation:float 8s ease-in-out infinite
}
.orb-one {
  width:340px;
  height:340px;
  right:8%;
  top:15%
}
.orb-two {
  width:190px;
  height:190px;
  right:23%;
  bottom:8%;
  animation-delay:-3s
}
@keyframes float {
  50% {
    transform:translateY(24px) rotate(8deg)
  }
}
.logo-strip {
  border-bottom:1px solid var(--line);
  padding:22px 0;
  background:#fff
}
.logo-strip .container {
  display:flex;
  align-items:center;
  gap:45px
}
.logo-strip span {
  font-size:12px;
  color:var(--muted)
}
.logo-list {
  display:flex;
  justify-content:space-between;
  flex:1;
  gap:30px;
  color:#78817e;
  font-size:12px;
  letter-spacing:1.3px
}
.section {
  padding:120px 0
}
.split {
  display:grid;
  grid-template-columns:220px 1fr;
  gap:70px
}
.section-label {
  color:#5e6c68
}
.display,.section-head h2,.quote-copy h2,.contact-info h2 {
  font:700 clamp(40px,5vw,68px)/1.08 var(--font-head);
  letter-spacing:-3px;
  margin:12px 0 25px;
  max-width:850px
}
.lead {
  font-size:21px;
  color:#4f5c58;
  max-width:760px
}
.intro p:not(.lead) {
  max-width:720px;
  color:var(--muted)
}
.products-preview {
  background:var(--cream)
}
.section-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:50px;
  gap:30px
}
.section-head h2 {
  font-size:clamp(38px,4vw,60px);
  margin-bottom:0
}
.section-head>p {
  max-width:450px;
  color:rgba(255,255,255,.6)
}
.product-mosaic {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  grid-template-rows:310px 310px;
  gap:20px
}
.product-card {
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  color:#fff
}
.product-card.large {
  grid-row:1/3
}
.product-card:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.75),transparent 65%)
}
.product-card img {
  height:100%;
  object-fit:cover;
  transition:.6s
}
.product-card:hover img {
  transform:scale(1.05)
}
.product-card div {
  position:absolute;
  z-index:2;
  left:30px;
  right:30px;
  bottom:28px
}
.product-card span {
  font-size:11px;
  opacity:.7
}
.product-card h3 {
  font:700 30px var(--font-head);
  margin:3px 0
}
.product-card p {
  margin:0;
  opacity:.7
}
.dark-section {
  background:var(--ink);
  color:#fff
}
.section-head.light .section-label {
  color:var(--green)
}
.service-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.14)
}
.service-card {
  min-height:350px;
  padding:32px 28px;
  border-right:1px solid rgba(255,255,255,.14);
  position:relative;
  transition:.35s
}
.service-card:first-child {
  border-left:1px solid rgba(255,255,255,.14)
}
.service-card:hover {
  background:var(--green);
  color:var(--ink);
  transform:translateY(-8px)
}
.service-card>span {
  font-size:12px;
  opacity:.55
}
.service-card h3 {
  font:700 25px/1.2 var(--font-head);
  margin:70px 0 18px
}
.service-card p {
  font-size:14px;
  opacity:.62
}
.service-card i {
  font-style:normal;
  position:absolute;
  bottom:30px;
  right:28px;
  font-size:22px
}
.timeline {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  position:relative;
  gap:35px
}
.timeline-line {
  position:absolute;
  top:26px;
  left:0;
  right:0;
  height:1px;
  background:var(--line)
}
.timeline-line span {
  position:absolute;
  left:0;
  top:-1px;
  width:0;
  height:3px;
  background:var(--green);
  transition:2s ease
}
.timeline-line.active span {
  width:100%
}
.timeline article {
  position:relative;
  padding-top:70px
}
.timeline article:before {
  content:'';
  position:absolute;
  top:20px;
  width:13px;
  height:13px;
  border-radius:50%;
  background:var(--ink);
  border:4px solid #fff;
  box-shadow:0 0 0 1px var(--ink)
}
.timeline b {
  font-size:12px;
  color:var(--muted)
}
.timeline h3 {
  font:700 22px var(--font-head);
  margin:15px 0 10px
}
.timeline p {
  font-size:14px;
  color:var(--muted)
}
.stats-section {
  padding:70px 0;
  background:var(--forest);
  color:#fff
}
.stats-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr)
}
.stat {
  padding:30px;
  border-right:1px solid rgba(255,255,255,.16)
}
.stat:first-child {
  border-left:1px solid rgba(255,255,255,.16)
}
.stat strong {
  font:700 58px var(--font-head);
  display:block;
  color:var(--green)
}
.stat span {
  font-size:13px;
  color:rgba(255,255,255,.68)
}
.quote-section {
  background:#edf0ec
}
.quote-wrap {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:80px
}
.quote-copy p {
  color:var(--muted);
  max-width:480px
}
.contact-mini {
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:35px;
  font-weight:700
}
.quote-form,.contact-form {
  background:#fff;
  border-radius:var(--radius);
  padding:38px;
  box-shadow:var(--shadow)
}
label {
  display:block;
  font-size:12px;
  font-weight:700;
  margin-bottom:20px
}
.field-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}
input,select,textarea {
  width:100%;
  border:0;
  border-bottom:1px solid #cfd6d3;
  padding:12px 0;
  outline:none;
  background:transparent;
  border-radius:0;
  margin-top:5px;
  transition:.25s
}
input:focus,select:focus,textarea:focus {
  border-color:var(--forest)
}
textarea {
  resize:vertical
}
.form-status {
  font-size:13px;
  margin:14px 0 0;
  color:var(--forest)
}
.site-footer {
  background:#0c1412;
  color:#fff;
  padding:80px 0 25px
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr .7fr .9fr 1fr;
  gap:65px
}
.brand-light {
  margin-bottom:20px
}
.footer-grid p {
  color:rgba(255,255,255,.55);
  font-size:14px
}
.footer-grid h4 {
  font:700 13px var(--font-head);
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:var(--green);
  margin:0 0 25px
}
.footer-grid>div>a {
  display:block;
  color:rgba(255,255,255,.65);
  font-size:14px;
  margin:11px 0
}
.socials {
  display:flex;
  gap:9px;
  margin-top:24px
}
.socials a {
  width:36px;
  height:36px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:11px
}
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:55px;
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  color:rgba(255,255,255,.4);
  font-size:12px
}
.whatsapp-float {
  position:fixed;
  z-index:30;
  right:22px;
  bottom:22px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  transition:.3s ease
}
.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s ease,transform .75s ease
}
.reveal.visible {
  opacity:1;
  transform:none
}
.delay-1 {
  transition-delay:.12s
}
.delay-2 {
  transition-delay:.24s
}
.delay-3 {
  transition-delay:.36s
}
.delay-4 {
  transition-delay:.48s
}
.page-hero {
  min-height:640px;
  display:flex;
  align-items:end;
  padding:160px 0 80px;
  color:#fff;
  position:relative;
  background-size:cover;
  background-position:center
}
.page-hero:before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(6,22,17,.88),rgba(6,22,17,.18))
}
.page-hero .container {
  position:relative;
  z-index:1
}
.page-hero h1 {
  font-size:clamp(62px,7vw,100px);
  max-width:900px
}
.page-hero p {
  font-size:19px;
  max-width:580px;
  color:rgba(255,255,255,.72)
}
.about-hero {
  background-image:url('https://images.unsplash.com/photo-1551488831-00ddcb6c6bd3?auto=format&fit=crop&w=1900&q=88')
}
.services-hero {
  background-image:url('https://images.unsplash.com/photo-1604324017966-4709b7e1f2f2?auto=format&fit=crop&w=1900&q=88')
}
.products-hero {
  background-image:url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1900&q=88')
}
.contact-hero {
  background-image:url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1900&q=88')
}
.image-story {
  background:var(--cream)
}
.story-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  align-items:center
}
.story-image {
  height:650px
}
.story-image img {
  height:100%;
  object-fit:cover;
  border-radius:var(--radius)
}
.story-panel {
  background:var(--forest);
  color:#fff;
  padding:60px;
  border-radius:var(--radius);
  margin-left:-55px;
  box-shadow:var(--shadow)
}
.story-panel h2 {
  font:700 42px/1.1 var(--font-head);
  letter-spacing:-2px
}
.story-panel p {
  color:rgba(255,255,255,.65)
}
.check-list {
  list-style:none;
  padding:0;
  margin:30px 0 0
}
.check-list li {
  padding:13px 0;
  border-top:1px solid rgba(255,255,255,.14)
}
.check-list li:before {
  content:'✓';
  color:var(--green);
  margin-right:12px
}
.value-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line)
}
.value-grid article {
  background:#fff;
  padding:35px;
  min-height:280px
}
.value-grid b {
  color:#83908c;
  font-size:12px
}
.value-grid h3 {
  font:700 25px var(--font-head);
  margin:55px 0 15px
}
.value-grid p {
  color:var(--muted);
  font-size:14px
}
.cta-banner {
  padding:100px 0;
  background:var(--green)
}
.cta-banner .container {
  display:grid;
  grid-template-columns:1fr 2fr auto;
  gap:35px;
  align-items:center
}
.cta-banner span {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px
}
.cta-banner h2 {
  font:700 clamp(34px,4vw,58px)/1.08 var(--font-head);
  letter-spacing:-2px;
  margin:0
}
.service-detail {
  border-bottom:1px solid var(--line)
}
.service-detail.alt {
  background:var(--cream)
}
.service-row {
  display:grid;
  grid-template-columns:70px 1fr 440px;
  gap:50px;
  align-items:center
}
.service-number {
  font:700 28px var(--font-head);
  color:#89938f;
  align-self:start
}
.service-row h2 {
  font:700 clamp(36px,4vw,55px)/1.08 var(--font-head);
  letter-spacing:-2px;
  margin:14px 0 22px
}
.service-row p {
  color:var(--muted);
  max-width:620px
}
.service-row img {
  height:480px;
  object-fit:cover;
  border-radius:var(--radius)
}
.pill-list {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:25px
}
.pill-list span {
  border:1px solid #bfc8c4;
  border-radius:100px;
  padding:8px 13px;
  font-size:12px
}
.sustainable {
  background:var(--forest);
  color:#fff
}
.sustainable .section-label {
  color:var(--green)
}
.sustainable .lead {
  color:rgba(255,255,255,.62)
}
.filter-bar {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:45px
}
.filter-bar button {
  border:1px solid var(--line);
  background:#fff;
  border-radius:100px;
  padding:10px 18px;
  cursor:pointer
}
.filter-bar button.active {
  background:var(--ink);
  color:#fff
}
.catalog-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px
}
.catalog-card {
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--cream);
  transition:.35s
}
.catalog-card:hover {
  transform:translateY(-8px);
  box-shadow:var(--shadow)
}
.catalog-card.hide {
  display:none
}
.catalog-card img {
  height:410px;
  object-fit:cover
}
.catalog-card div {
  padding:22px
}
.catalog-card span {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.8px;
  color:var(--muted)
}
.catalog-card h3 {
  font:700 23px var(--font-head);
  margin:5px 0
}
.contact-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px
}
.contact-info p {
  color:var(--muted)
}
.info-block {
  border-top:1px solid var(--line);
  padding:20px 0
}
.info-block small {
  display:block;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1.4px;
  margin-bottom:5px
}
.info-block a,.info-block address {
  font-style:normal;
  font-size:18px;
  font-weight:600
}
.auth-page {
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr
}
.auth-visual {
  background:linear-gradient(0deg,rgba(4,18,13,.75),rgba(4,18,13,.2)),url('../images/womenswear.webp') center/cover;
  color:#fff;
  padding:55px;
  display:flex;
  align-items:end
}
.signup-visual {
  background-image:linear-gradient(0deg,rgba(4,18,13,.78),rgba(4,18,13,.1)),url('../images/design-team.webp')
}
.forgot-visual {
  background-image:linear-gradient(0deg,rgba(4,18,13,.78),rgba(4,18,13,.1)),url('../images/flatlay.webp')
}
.auth-visual>div {
  max-width:650px
}
.auth-brand {
  position:absolute;
  top:42px;
  left:55px;
  display:flex;
  align-items:center;
  gap:10px
}
.auth-brand b,.auth-brand small {
  display:block
}
.auth-brand small {
  font-size:8px;
  letter-spacing:3px
}
.auth-visual h1 {
  font:700 clamp(45px,5vw,70px)/1 var(--font-head);
  letter-spacing:-3px;
  margin:22px 0
}
.auth-visual p {
  color:rgba(255,255,255,.7);
  font-size:18px
}
.auth-panel {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:45px;
  background:#f8faf9
}
.auth-box {
  width:min(510px,100%)
}
.auth-box.small {
  max-width:430px
}
.back-link {
  font-size:13px;
  color:var(--muted)
}
.auth-box h2 {
  font:700 42px var(--font-head);
  letter-spacing:-2px;
  margin:38px 0 4px
}
.auth-box>p {
  color:var(--muted);
  margin-bottom:30px
}
.password-wrap {
  position:relative
}
.password-wrap button {
  position:absolute;
  right:0;
  bottom:11px;
  border:0;
  background:transparent;
  font-size:11px;
  font-weight:700;
  cursor:pointer
}
.form-options {
  display:flex;
  justify-content:space-between;
  font-size:12px;
  margin-bottom:22px
}
.check {
  display:flex;
  gap:8px;
  align-items:center;
  margin:0;
  font-weight:500
}
.check input {
  width:auto;
  margin:0
}
.legal {
  margin-bottom:20px
}
.full {
  width:100%
}
.auth-switch {
  text-align:center;
  font-size:13px
}
.auth-switch a,.form-options a {
  font-weight:700;
  text-decoration:underline
}
.demo-note {
  margin-top:25px;
  background:#eaf0ed;
  border-radius:14px;
  padding:15px;
  display:flex;
  flex-direction:column;
  font-size:12px
}
.demo-note b {
  margin-bottom:4px
}
.sidebar {
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  width:260px;
  background:#0e1916;
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between
}
.sidebar .auth-brand {
  position:static
}
.sidebar nav {
  display:flex;
  flex-direction:column;
  gap:6px
}
.sidebar nav a,.sidebar>div:last-child a,.sidebar>div:last-child button {
  padding:12px 15px;
  border-radius:10px;
  color:rgba(255,255,255,.65);
  font-size:14px;
  border:0;
  background:transparent;
  text-align:left
}
.sidebar nav a.active,.sidebar nav a:hover {
  background:rgba(255,255,255,.08);
  color:#fff
}
.sidebar>div:last-child {
  display:flex;
  flex-direction:column
}
.sidebar button {
  cursor:pointer
}
.dashboard-main {
  margin-left:260px;
  min-height:100vh;
  background:#f3f6f5
}
.dash-header {
  height:108px;
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:0 45px;
  display:flex;
  align-items:center;
  justify-content:space-between
}
.dash-header small {
  color:var(--muted)
}
.dash-header h1 {
  font:700 28px var(--font-head);
  margin:2px 0
}
.avatar {
  width:46px;
  height:46px;
  border-radius:50%;
  background:var(--green);
  display:grid;
  place-items:center;
  font-weight:800
}
.dash-menu {
  display:none
}
.dash-content {
  padding:40px 45px
}
.dash-intro {
  display:flex;
  justify-content:space-between;
  align-items:center
}
.dash-intro h2 {
  font:700 30px var(--font-head);
  margin:0
}
.dash-intro p {
  margin:4px 0;
  color:var(--muted)
}
.metric-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin:30px 0
}
.metric-grid article,.dash-card {
  background:#fff;
  border:1px solid #e1e7e4;
  border-radius:18px;
  padding:23px
}
.metric-grid span,.metric-grid small {
  display:block;
  color:var(--muted);
  font-size:12px
}
.metric-grid strong {
  display:block;
  font:700 32px var(--font-head);
  margin:9px 0
}
.dash-grid {
  display:grid;
  grid-template-columns:1.7fr .8fr;
  gap:18px
}
.dash-card-head {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px
}
.dash-card-head h3 {
  font:700 18px var(--font-head);
  margin:0
}
.dash-card-head a {
  font-size:12px;
  text-decoration:underline
}
.table-row {
  display:grid;
  grid-template-columns:1.3fr .8fr 1fr .7fr;
  gap:15px;
  padding:16px 0;
  border-top:1px solid var(--line);
  align-items:center;
  font-size:13px
}
.table-row span:first-child small {
  display:block;
  color:var(--muted)
}
.table-head {
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  border:0
}
.badge {
  border-radius:100px;
  padding:5px 9px;
  font-size:10px;
  width:max-content
}
.badge.green {
  background:#e6f5e5;
  color:#26733a
}
.badge.amber {
  background:#fff0dc;
  color:#a85e05
}
.badge.blue {
  background:#e6effb;
  color:#29649a
}
.activity ul {
  list-style:none;
  padding:0;
  margin:0
}
.activity li {
  display:flex;
  gap:13px;
  padding:14px 0;
  border-top:1px solid var(--line)
}
.activity i {
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  margin-top:7px
}
.activity b,.activity small {
  display:block;
  font-size:12px
}
.activity small {
  color:var(--muted);
  margin-top:3px
}
@media(max-width:980px) {
  .nav-links {
    position:fixed;
    inset:88px 0 0;
    background:#fff;
    color:var(--ink);
    display:flex;
    flex-direction:column;
    padding:45px 30px;
    gap:25px;
    transform:translateX(100%);
    transition:.35s;
    font-size:24px
  }
  .site-header.open .nav-links {
    transform:none
  }
  .menu-toggle {
    display:block
  }
  .site-header.open .menu-toggle span:first-child {
    transform:translateY(4px) rotate(45deg)
  }
  .site-header.open .menu-toggle span:last-child {
    transform:translateY(-5px) rotate(-45deg)
  }
  .login-link {
    display:none
  }
  .hero h1,.page-hero h1 {
    letter-spacing:-4px
  }
  .service-grid {
    grid-template-columns:1fr 1fr
  }
  .split {
    grid-template-columns:1fr
  }
  .product-mosaic {
    grid-template-columns:1fr;
    grid-template-rows:520px 300px 300px
  }
  .product-card.large {
    grid-row:auto
  }
  .quote-wrap,.contact-grid {
    grid-template-columns:1fr
  }
  .footer-grid {
    grid-template-columns:1.2fr 1fr
  }
  .story-grid {
    grid-template-columns:1fr
  }
  .story-panel {
    margin:-70px 35px 0
  }
  .service-row {
    grid-template-columns:50px 1fr
  }
  .service-row img {
    grid-column:2
  }
  .catalog-grid {
    grid-template-columns:1fr 1fr
  }
  .cta-banner .container {
    grid-template-columns:1fr
  }
  .auth-page {
    grid-template-columns:1fr
  }
  .auth-visual {
    display:none
  }
  .sidebar {
    transform:translateX(-100%);
    transition:.3s;
    z-index:10
  }
  .dashboard-page.sidebar-open .sidebar {
    transform:none
  }
  .dashboard-main {
    margin-left:0
  }
  .dash-menu {
    display:block
  }
  .metric-grid {
    grid-template-columns:1fr 1fr
  }
  .dash-grid {
    grid-template-columns:1fr
  }
}
@media(max-width:650px) {
  .container {
    width:min(100% - 28px,1180px)
  }
  .nav-wrap {
    height:74px
  }
  .nav-links {
    inset:74px 0 0
  }
  .hero {
    min-height:760px
  }
  .hero-content {
    padding-top:50px
  }
  .hero h1,.page-hero h1 {
    font-size:52px;
    letter-spacing:-3px
  }
  .hero p {
    font-size:16px
  }
  .hero-actions {
    align-items:flex-start;
    flex-direction:column;
    gap:20px
  }
  .hero-proof {
    gap:18px;
    flex-wrap:wrap;
    margin-top:42px
  }
  .scroll-cue {
    display:none
  }
  .logo-strip .container {
    display:block
  }
  .logo-list {
    overflow:auto;
    margin-top:15px;
    justify-content:flex-start
  }
  .section {
    padding:80px 0
  }
  .display,.section-head h2,.quote-copy h2,.contact-info h2 {
    font-size:38px;
    letter-spacing:-2px
  }
  .section-head {
    align-items:flex-start;
    flex-direction:column
  }
  .product-mosaic {
    grid-template-rows:420px 260px 260px
  }
  .service-grid {
    grid-template-columns:1fr
  }
  .service-card {
    min-height:280px;
    border-left:1px solid rgba(255,255,255,.14)
  }
  .service-card h3 {
    margin-top:40px
  }
  .timeline {
    grid-template-columns:1fr
  }
  .timeline-line {
    display:none
  }
  .timeline article {
    padding:0 0 0 35px
  }
  .timeline article:before {
    top:6px;
    left:0
  }
  .stats-grid {
    grid-template-columns:1fr 1fr
  }
  .stat {
    border-bottom:1px solid rgba(255,255,255,.16)
  }
  .quote-form,.contact-form {
    padding:24px
  }
  .field-row {
    grid-template-columns:1fr;
    gap:0
  }
  .footer-grid {
    grid-template-columns:1fr
  }
  .footer-bottom {
    flex-direction:column;
    gap:8px
  }
  .page-hero {
    min-height:560px;
    padding-bottom:55px
  }
  .story-image {
    height:450px
  }
  .story-panel {
    margin:-45px 14px 0;
    padding:30px
  }
  .value-grid {
    grid-template-columns:1fr
  }
  .service-row {
    grid-template-columns:1fr
  }
  .service-number {
    margin-bottom:-25px
  }
  .service-row img {
    grid-column:auto;
    height:360px
  }
  .catalog-grid {
    grid-template-columns:1fr
  }
  .catalog-card img {
    height:430px
  }
  .auth-panel {
    padding:28px 20px
  }
  .auth-box h2 {
    font-size:35px
  }
  .dash-header,.dash-content {
    padding-left:20px;
    padding-right:20px
  }
  .dash-intro {
    align-items:flex-start;
    gap:18px;
    flex-direction:column
  }
  .metric-grid {
    grid-template-columns:1fr
  }
  .project-table {
    overflow-x:auto
  }
  .table-row {
    min-width:650px
  }
  .stats-section {
    padding:35px 0
  }
}
@media(prefers-reduced-motion:reduce) {
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
    scroll-behavior:auto!important
  }
  .reveal {
    opacity:1;
    transform:none
  }
}
.whatsapp-float:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 14px 36px rgba(0,0,0,.28)
}
.whatsapp-float img {
  width:30px;
  height:30px;
  display:block;
  object-fit:contain
}
.socials a img {
  width:18px;
  height:18px;
  display:block;
  object-fit:contain
}
.auth-brand .brand-mark {
  width:42px;
  height:42px;
  flex:0 0 42px
}
.avatar {
  background:var(--green)
}
/* ===== Fixed Mobile Menu Burgundy Background ===== */
.site-header {
  background:transparent;
  color:#fff;
  transition:.35s ease;
}
.site-header.scrolled,
.site-header.open {
  background:#7E102C !important;
  color:#fff !important;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.site-header .btn-ghost {
  border-color:rgba(255,255,255,.45);
  color:#fff;
}
.site-header.scrolled .btn-ghost,
.site-header.open .btn-ghost {
  border-color:rgba(255,255,255,.32);
}
@media(max-width:980px) {
  .site-header.open {
    height:100vh;
    overflow:hidden;
  }
  .site-header.open .nav-links {
    background:#7E102C !important;
    color:#fff !important;
    position:fixed;
    top:88px;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
    padding:45px 30px;
    overflow-y:auto;
    transform:none !important;
  }
  .site-header.open .nav-links a {
    display:block;
    width:100%;
    color:#fff !important;
    font-size:28px;
    line-height:1.2;
    padding:4px 0;
  }
  .site-header.open .nav-links a:after {
    background:var(--green);
  }
  body.menu-open {
    overflow:hidden;
  }
}
@media(max-width:650px) {
  .site-header.open .nav-links {
    top:74px;
    padding:36px 24px;
  }
}
/* ===== Footer Brand Alignment Fix ===== */
.site-footer .brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.site-footer .brand-mark {
  width:40px;
  height:40px;
  flex:0 0 40px;
  object-fit:contain;
  display:block;
}
.site-footer .brand b {
  display:block;
  font-size:18px;
  line-height:1.05;
  margin:0;
}
.site-footer .brand small {
  display:block;
  margin-top:4px;
  font-size:8px;
  letter-spacing:3px;
}
.brand-light {
  margin-bottom:16px;
}
/* ===== Mobile Log In Link - same style as menu items ===== */
.mobile-login {
  display:none;
}
@media(max-width:980px) {
  .site-header.open .nav-links .mobile-login {
    display:block !important;
  }
  .site-header.open .nav-links > a {
    display:block;
    width:100%;
    color:#fff !important;
    font-size:28px;
    font-weight:800;
    line-height:1.2;
    padding:4px 0;
    margin:0;
    text-decoration:none;
  }
}
@media(min-width:981px) {
  .mobile-login {
    display:none !important;
  }
}
