/* style.css - COMPLETO E ATUALIZADO */
/* ─────────────────────────────────────────────
   TOKENS — LIGHT
───────────────────────────────────────────── */
:root,
[data-theme="light"] {
  --ink:         #0d0d0d;
  --ink2:        #3a3835;
  --bg:          #f6f4f0;
  --bg2:         #eeebe5;
  --line:        rgba(13,13,13,.08);
  --line-mid:    rgba(13,13,13,.16);
  --muted:       #8a8782;
  --copper:      #b5773a;
  --copper-dim:  rgba(181,119,58,.12);
  --wa:          #25D366;
  --bar-bg:      rgba(246,244,240,.94);
  --card-bg:     #fff;
  --serif:       'DM Serif Display', Georgia, serif;
  --sans:        'DM Sans', sans-serif;
  --ease:        cubic-bezier(.23,1,.32,1);
  --bar-h:       62px;
}

/* ─────────────────────────────────────────────
   TOKENS — DARK
───────────────────────────────────────────── */
[data-theme="dark"] {
  --ink:         #f0ede8;
  --ink2:        #c8c4bc;
  --bg:          #141210;
  --bg2:         #1c1916;
  --line:        rgba(240,237,232,.09);
  --line-mid:    rgba(240,237,232,.18);
  --muted:       #6e6b67;
  --copper:      #d4924a;
  --copper-dim:  rgba(212,146,74,.12);
  --bar-bg:      rgba(20,18,16,.94);
  --card-bg:     #1e1b18;
}

/* ─────────────────────────────────────────────
   RESET & GLOBAL
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  transition: background .35s, color .35s;
}

/* Adiciona noise global */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
}

/* ─────────────────────────────────────────────
   HEADER (BAR)
───────────────────────────────────────────── */
.bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  height: var(--bar-h);
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto; /* 6 colunas */
  align-items: center;
  gap: 0 18px;
  padding: 0 40px;
  background: var(--bar-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: background .35s;
}

.bar-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: .97rem;
  color: var(--ink);
  letter-spacing: -.01em;
  transition: opacity .35s var(--ease), transform .35s var(--ease), color .35s;
  white-space: nowrap;
}
.bar-title.swap-out { opacity: 0; transform: translateY(-6px); }
.bar-title.swap-in  { opacity: 0; transform: translateY(6px); }

.bar-dots { display: flex; gap: 6px; align-items: center; }
.nd {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-mid);
  cursor: pointer;
  transition: all .35s var(--ease);
}
.nd.on { background: var(--copper); transform: scale(1.6); }

.bar-spacer { flex: 1; }

/* desktop navigation */
.bar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.bar-nav a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
}
.bar-nav a:hover { color: var(--ink); }
.bar-nav a.active { color: var(--copper); }

/* Desktop social icons */
.desktop-social {
  display: none; /*flex*/
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.desktop-social .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-mid);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}

.desktop-social .social-icon:hover {
  background: var(--bg2);
  color: var(--copper);
  border-color: var(--copper);
}

.bar-actions { display: flex; align-items: center; gap: 14px; }

.btn-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-mid);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-icon:hover { background: var(--bg2); color: var(--ink); }

.btn-ham { display: none; }

/* ─────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: var(--bar-h) 0 0 0;
  z-index: 250;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 36px 28px 48px;
  transform: translateX(100%);
  transition: transform .4s var(--ease), background .35s;
  border-top: 1px solid var(--line);
  justify-content: center;
  align-items: center;
}

.drawer.open { transform: translateX(0); }

.drawer-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  align-items: center;
  justify-content: center;
}

.drawer a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 16px 0;
  transition: color .25s, padding-left .25s var(--ease);
  text-align: center;
}

.drawer a:hover { 
  color: var(--copper); 
  padding-left: 8px; 
}

.drawer a.active {
  color: var(--copper);
}

.drawer-btn {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 36px;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  margin: 24px 0 32px 0;
  transition: background .3s, letter-spacing .3s, color .35s;
  width: 100%;
}

[data-theme="light"] .drawer-btn {
  background: var(--ink);
  color: var(--bg);
}

[data-theme="dark"] .drawer-btn {
  background: #fff;
  color: #000;
  border: 1px solid var(--line-mid);
}

.drawer-btn:hover {
  background: var(--copper);
  color: var(--bg);
  letter-spacing: .14em;
}

[data-theme="dark"] .drawer-btn:hover {
  background: var(--copper);
  color: #fff;
}

.drawer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line-mid);
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-mid);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background .25s, color .25s, border-color .25s;
  text-decoration: none;
  padding: 0 !important;
  border-bottom: 1px solid var(--line-mid) !important;
}

.social-icon:hover {
  background: var(--bg2);
  color: var(--copper);
  padding-left: 0 !important;
  border-color: var(--copper);
}

/* ─────────────────────────────────────────────
   SCROLL CONTAINER
───────────────────────────────────────────── */
#sw {
  margin-top: var(--bar-h);
  height: calc(100vh - var(--bar-h));
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
.sec {
  scroll-snap-align: start;
  height: calc(100vh - var(--bar-h));
  min-height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: background .35s;
}

.deco {
  position: absolute;
  bottom: -24px;
  right: -16px;
  font-size: clamp(8rem, 17vw, 15rem);
  color: rgba(13,13,13,.05);
  pointer-events: none;
  user-select: none;
  z-index: 10;
  line-height: 1;
  transition: color .35s;
  overflow: visible;
}
[data-theme="dark"] .deco { color: rgba(240,237,232,.05); }

/* grid two columns */
.grid {
  flex: 1;
  display: grid;
  grid-template-columns: 40fr 60fr;
  min-height: 0;
  position: relative;
  z-index: 2;
}
.grid.flip { grid-template-columns: 60fr 40fr; }

.lcol {
  background: transparent !important; 
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  
  position: relative;
  overflow: hidden;
  transition: border-color .35s;
}
.grid.flip .lcol { order: 2; border-right: none; }

.rcol {
  background: transparent !important; 
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.grid.flip .rcol { order: 1; }

/* typography */
.eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 0;
}

.heading {
  font-family: var(--serif);
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--ink);
  transition: color .35s;
}
.heading em { font-style: italic; color: var(--copper); }

.desc {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--ink2);
  font-weight: 300;
  max-width: 360px;
  transition: color .35s;
}

/* feature list */
.feats { list-style: none; flex-shrink: 0; }
.feats li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: .9rem;
  font-weight: 500;
  padding: 7px 0;
  color: var(--ink);
  transition: padding-left .28s var(--ease), color .35s;
  cursor: default;
}
.feats li:hover { padding-left: 6px; }
.ficon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .28s var(--ease), background .35s;
}
.feats li:hover .ficon { transform: scale(1.15); }
.ficon i { color: #fff; font-size: .44rem; }

/* whatsapp block */
.wa-block {
  display: flex;
  max-width: 80%;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(37,211,102,.22);
  border-radius: 9px;
  background: rgba(37,211,102,.05);
  flex-shrink: 0;
}
.wa-ico {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,211,102,.26);
}
.wa-ico i { color: #fff; font-size: .85rem; }
.wa-text { display: flex; flex-direction: column; gap: 1px; }
.wa-label { font-size: .8rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.wa-sub   { font-size: .8rem; color: var(--muted); font-weight: 300; }

/* BUTTON (universal) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);     
  color: var(--bg);
  padding: 14px 36px;
  width: 60%;  
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  transition: background .3s, letter-spacing .3s, color .35s;
}
[data-theme="light"] .btn {
  background: var(--ink);
  color: var(--bg);
}
[data-theme="dark"] .btn {
  background: #fff;
  color: #000;
}
.btn .circ {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: .52rem;
  transition: background .3s, transform .3s var(--ease);
  flex-shrink: 0;
}
.btn:hover {
  background: var(--copper);
  color: var(--bg);
  letter-spacing: .14em;
}
[data-theme="dark"] .btn:hover {
  background: var(--copper);
  color: #fff;
}
.btn:hover .circ { background: rgba(255,255,255,.22); transform: rotate(45deg); }

/* portfolio area */
.port {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 0;
  margin-bottom: 20px;
}

.pmain {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 2px solid var(--line);
  transition: border-color .35s var(--ease);
}

.pmain:hover {
  border-color: var(--copper);
}

.pmain-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s var(--ease);
}
.pmain:hover .pmain-bg { transform: scale(1.04); }

.pmain-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.1) 40%, transparent 50%);
  pointer-events: none;
}

.pmain-tag {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

[data-theme="dark"] .pmain-tag {
  background: #000;
  color: #fff;
}

.pmain-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pmain-label {
  font-family: var(--sans);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2px;
}
.pmain-title {
  font-family: var(--sans);
  font-size: clamp(.9rem, 1.4vw, 1.1rem);
  color: #fff;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -.01em;
}
.pmain-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.72);
  font-weight: 400;
}

.pmain-link {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .62rem;
  opacity: 1;
  transition: opacity .28s, background .28s, transform .28s var(--ease), border-color .28s;
}
.pmain:hover .pmain-link { 
  transform: scale(1.2);
}

.pmain-link:hover {
  background: var(--copper) !important;
  border-color: transparent;
}

.thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
}
.th {
  aspect-ratio: 16/9;
  border-radius: 9px;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.th-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .35s var(--ease);
}
.th:hover .th-img { transform: scale(1.06); }
.th-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(13,13,13,.22);
}
[data-theme="dark"] .th-icon { color: rgba(240,237,232,.2); }
.th.on { border-color: var(--copper); }
.th:hover:not(.on) { border-color: var(--line-mid); }

.btn-cta { flex-shrink: 0; padding-top: 2px; padding-bottom: 4px; }
.lcol-cta { display: none; }

/* ─────────────────────────────────────────────
   NAVBAR TRANSPARENTE NO HERO (s0)
───────────────────────────────────────────── */
.bar {
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.bar.bar--transparent {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

/* ─────────────────────────────────────────────
   THEME TOGGLE (pill)
───────────────────────────────────────────── */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.theme-toggle-track {
  width: 48px;
  height: 26px;
  border-radius: 100px;
  background: var(--bg2);
  border: 1px solid var(--line-mid);
  position: relative;
  display: flex;
  align-items: center;
  transition: background .35s, border-color .35s;
}
[data-theme="dark"] .theme-toggle-track {
  background: var(--bg2);
  border-color: var(--line-mid);
}
.theme-toggle-thumb {
  position: absolute;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--card-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .56rem;
  color: var(--muted);
  transition: transform .32s var(--ease), background .35s, color .35s, box-shadow .35s;
}
[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(22px);
  background: var(--card-bg);
  color: var(--muted);
  box-shadow: 0 1px 4px rgba(0,0,0,.32);
}

/* ─────────────────────────────────────────────
   HERO CARDS COMO LINK
───────────────────────────────────────────── */
a.hero-card {
  text-decoration: none;
  cursor: pointer;
}

/* ─────────────────────────────────────────────
   FONT-WEIGHT 500 EM TÍTULOS NO TEMA ESCURO
───────────────────────────────────────────── */
[data-theme="dark"] .heading,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .cta-title {
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   BTN HOVER — MESMO ESTILO DO HERO-BTN-PRIMARY
───────────────────────────────────────────── */
.btn {
  transition: background .3s, letter-spacing .28s, color .35s,
              transform .28s var(--ease), box-shadow .28s;
}
.btn:hover {
  background: var(--copper);
  color: #fff;
  letter-spacing: .14em;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,119,58,.32);
}
[data-theme="dark"] .btn:hover {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 8px 28px rgba(212,146,74,.36);
}


.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: .04s; }
.d2 { transition-delay: .11s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .34s; }

/* ═══════════════════ DESKTOP ≥ 861px ═══════════════════ */
@media (min-width: 861px) {
  #sw {
    padding: 0 80px;
  }
  
.bar {
    grid-template-columns: auto auto 1fr auto auto auto;
  }
  
  .bar-actions {
    position: static;
    margin-left: 0;
  }
  
  .btn-ham {
    display: none;
  }
  
  .sec { 
    height: calc(100vh - var(--bar-h)); 
    overflow: visible !important;
  }
  
  .grid, .grid.flip { 
    grid-template-columns: 44fr 56fr;
    overflow: visible; 
  }
  .grid.flip .lcol { order: 1; border-left: none; }
  
  .lcol {
    padding: 0 60px 0 68px;
    gap: 0;
    justify-content: center;

  }
  .eyebrow  { margin-bottom: 16px; font-size: .62rem; letter-spacing: .32em; }
  .heading  { font-size: clamp(2.8rem, 3.8vw, 4rem); line-height: 1.04; margin-bottom: 18px; }
  .desc     { font-size: .92rem; line-height: 1.76; max-width: 360px; margin-bottom: 26px; }
  .feats    { margin-bottom: 28px; }
  .feats li { font-size: .83rem; padding: 8px 0; }
  .wa-block { margin-bottom: 28px; }
  
  .btn-cta { display: none; }
  .lcol-cta { display: block; }
  
  .rcol {
    padding: 40px 24px 80px 24px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
  }
  
  .port {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
  
  .pmain {
    aspect-ratio: 16/9;
    width: 100%;
  }
  
  .thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }
  
  .grid, .grid.flip {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid.flip .lcol {
    order: 1;

    border-left: none;
  }
  
  .grid.flip .rcol {
    order: 2;
  }
  
  .deco { 
    bottom: -32px; 
    right: -16px;
    font-size: clamp(10rem, 18vw, 16rem);
    z-index: 10;
  }
  
  .pmain { aspect-ratio: 16/9; flex: 0 0 auto; width: 100%; }
  .thumbs { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .btn-ham { display: none; }

  /* GARANTIA: ícones sociais à esquerda do botão de tema */
  .desktop-social {
    order: 4;
  }
  .bar-actions {
    order: 5;
  }
}

/* ═══════════════════ MOBILE ≤ 860px ═══════════════════ */
@media (max-width: 860px) {
  .bar-nav + .bar-spacer { display: none; }

  
  .bar {
    grid-template-columns: auto auto 1fr auto;
  }
  .desktop-social {
    display: none;
  }
  .bar-actions {
    order: unset;
  }
  
  .bar { padding: 0 20px; gap: 12px; }
  .bar-nav { display: none; }
  .btn-ham { display: flex; }
  .lcol-cta { display: none; }
  
  #sw { scroll-snap-type: none; }
  .sec { height: auto; min-height: calc(100vh - var(--bar-h)); overflow: visible; }
  .grid, .grid.flip { grid-template-columns: 1fr; }
  .lcol, .grid.flip .lcol { order: 1; border-right: none; border-left: none; padding: 40px 20px 24px; gap: 16px; justify-content: flex-start; }
  .rcol, .grid.flip .rcol { order: 2; padding: 24px 20px 48px; }
  .rcol {margin-top: -10px; }
  .deco { bottom: auto; top: 32px; right: -8px; font-size: 6.5rem; }
  .desc { max-width: 100%; }
  .heading { font-size: clamp(2.4rem, 9.6vw, 3rem); }
  
  .thumbs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
    width: 100%;
  }
  .thumbs::-webkit-scrollbar { display: none; }
  .th { flex: 0 0 42%; max-width: 160px; scroll-snap-align: start; }
  
  .btn .circ { display: none; }
  .btn-cta { display: block; width: 100%; }
  .btn-cta .btn { width: 100%; justify-content: center; max-width: 100%; padding-top: 18px; padding-bottom: 18px; }
}

@media (max-width: 520px) {
  :root { --bar-h: 54px; }
  .bar { padding: 0 16px; }
  .bar-title { font-size: .88rem; }
  .lcol { padding: 36px 16px 20px; }
  .rcol { padding: 18px 16px 44px; }
  .heading { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .th { flex: 0 0 44%; max-width: 150px; }
  .deco { font-size: 5.5rem; top: 36px; }
}
/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-sec {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 100px);
  gap: 40px;
}





/* ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(181,119,58,.13) 0%, transparent 70%);
  top: -180px; left: -120px;
  animation: heroOrb1 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(181,119,58,.08) 0%, transparent 70%);
  bottom: -100px; right: 30%;
  animation: heroOrb2 15s ease-in-out infinite alternate;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(181,119,58,.06) 0%, transparent 70%);
  top: 20%; right: -60px;
  animation: heroOrb1 9s ease-in-out infinite alternate-reverse;
}
[data-theme="dark"] .hero-orb-1 { background: radial-gradient(circle, rgba(212,146,74,.16) 0%, transparent 70%); }
[data-theme="dark"] .hero-orb-2 { background: radial-gradient(circle, rgba(212,146,74,.10) 0%, transparent 70%); }

@keyframes heroOrb1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}
@keyframes heroOrb2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-20px, -30px) scale(1.06); }
}

/* left content */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
  flex-shrink: 0;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--copper);
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--bg2);
  width: fit-content;
  transition: border-color .35s, background .35s, color .35s;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px var(--copper-dim); }
  50%       { box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: var(--ink);
  transition: color .35s;
}
.hero-title em {
  font-style: italic;
  color: var(--copper);
  display: inline-block;
}
.hero-title-outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  transition: -webkit-text-stroke-color .35s;
}
[data-theme="dark"] .hero-title-outline {
  -webkit-text-stroke-color: var(--ink);
}

.hero-desc {
  font-size: clamp(.85rem, 1.1vw, .95rem);
  line-height: 1.82;
  color: var(--ink2);
  font-weight: 300;
  transition: color .35s;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 15px 28px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .3s, letter-spacing .28s, transform .28s var(--ease), box-shadow .28s;
}
.hero-btn-primary:hover {
  background: var(--copper);
  color: #fff;
  letter-spacing: .14em;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,119,58,.32);
}
[data-theme="dark"] .hero-btn-primary { background: #fff; color: #000; }
[data-theme="dark"] .hero-btn-primary:hover { background: var(--copper); color: #fff; }

.hero-btn-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .54rem;
  transition: transform .28s var(--ease);
}
.hero-btn-primary:hover .hero-btn-arrow { transform: rotate(45deg); }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  padding: 15px 22px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line-mid);
  cursor: pointer;
  font-family: var(--sans);
  transition: color .25s, border-color .25s, background .25s;
}
.hero-btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--bg2);
}

/* stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 8px;
  
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--ink);
  line-height: 1;
  transition: color .35s;
}
.hero-stat-num::after { content: '+'; color: var(--copper); font-size: .7em; }
.hero-stat:nth-child(5) .hero-stat-num::after { content: '+'; }
.hero-stat-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  transition: color .35s;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line-mid);
  margin: 0 28px 0 0;
  flex-shrink: 0;
}

/* right visual — card stack */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: clamp(260px, 36vw, 440px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: default;
  transition:
    border-color .28s var(--ease),
    transform .32s var(--ease),
    box-shadow .32s var(--ease),
    background .35s;
}
.hero-card:hover {
  border-color: var(--copper);
  transform: translateX(6px);
  box-shadow: 0 4px 24px rgba(181,119,58,.12);
}


@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.hero-card:hover { animation-play-state: paused; }

.hc-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .35s;
}
.hc-icon i { color: var(--copper); font-size: 1.6rem; transition: color .35s; }

.hc-text {
  display: flex; flex-direction: column; gap: 1px; flex: 1;
}
.hc-title {
  font-size: .9rem; font-weight: 500; color: var(--ink);
  transition: color .35s;
}
.hc-sub {
  font-size: .7rem; color: var(--muted); font-weight: 400;
   transition: color .35s;
}

.hc-arrow {
  color: var(--line-mid);
  font-size: .7rem;
  transition: color .28s, transform .28s;
}
.hero-card:hover .hc-arrow {
  color: var(--copper);
  transform: translate(2px,-2px);
}

/* floating metric widget */
.hero-metric {
  position: absolute;
  bottom: -8px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: background .35s, border-color .35s;
  animation: cardFloat 7s ease-in-out infinite;
}
.hero-metric-ring {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
}
.hero-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.ring-bg  { fill: none; stroke: var(--line); stroke-width: 4; }
.ring-fill {
  fill: none; stroke: var(--copper); stroke-width: 4;
  stroke-linecap: round;
  transition: stroke .35s;
}
.hero-metric-val {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  z-index: 1;
  line-height: 1;
}
.hero-metric-label {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--copper));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-text {
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-sec {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  transition: background .35s;
}


.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.cta-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(181,119,58,.11) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: heroOrb1 14s ease-in-out infinite alternate;
}
.cta-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(181,119,58,.07) 0%, transparent 65%);
  bottom: -180px; left: -100px;
  animation: heroOrb2 11s ease-in-out infinite alternate;
}
[data-theme="dark"] .cta-orb-1 { background: radial-gradient(circle, rgba(212,146,74,.14) 0%, transparent 65%); }
[data-theme="dark"] .cta-orb-2 { background: radial-gradient(circle, rgba(212,146,74,.09) 0%, transparent 65%); }

/* big background word */
.cta-bg-word {
  position: absolute;
  bottom: -0.18em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(125, 125, 125, 0.05);
  -webkit-text-stroke: 1px rgba(125, 125, 125, 0.05);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -.04em;
  z-index: 0;
  user-select: none;
  transition: -webkit-text-stroke-color .35s;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 680px;
  padding: 0 24px;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--copper);
}
.cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 3px var(--copper-dim);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--ink);
  transition: color .35s;
}
.cta-title em {
  font-style: italic;
  color: var(--copper);
}

.cta-desc {
  font-size: .92rem;
  line-height: 1.82;
  color: var(--ink2);
  font-weight: 300;
  max-width: 520px;
  transition: color .35s;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  box-shadow: 0 4px 20px rgba(37,211,102,.28);
  transition: background .28s, transform .28s var(--ease), box-shadow .28s, letter-spacing .28s;
}
.cta-btn-main:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.36);
  letter-spacing: .13em;
}
.cta-wa-icon { font-size: 1.1rem; }

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line-mid);
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .25s, background .25s, color .25s, transform .28s var(--ease);
}
.cta-btn-outline:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: var(--copper-dim);
  transform: translateY(-3px);
}

/* trust items */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  width: 100%;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .06em;
  transition: color .35s;
}
.cta-trust-item i {
  color: var(--copper);
  font-size: .82rem;
}

/* ═══════════════════════════════════════════════
   HERO/CTA RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hero-sec {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 60px;
    gap: 32px;
  }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .hero-visual {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-metric {
    position: static;
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px 18px;
  }
  .hero-scroll { display: none; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px 0 0; }
  .hero-stat-divider { margin: 0 16px 0 0; }

  .cta-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-btn-main, .cta-btn-outline { width: 100%; justify-content: center; }
  .cta-bg-word { font-size: clamp(5rem, 22vw, 8rem); }
  .cta-br { display: none; }
  .hero-br { display: none; }
}

@media (max-width: 520px) {
  .hero-sec { padding: 32px 16px 52px; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-metric { grid-column: span 1; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0; }
  .cta-trust { gap: 16px; }
}