/* ============================================
   eCaddy v4 · Premium Ecommerce Growth Partner
   Theme: Cream + Black + Brass with Red accents
   ============================================ */

:root{
  --cream: #f5efe6;
  --cream-2: #ebe3d4;
  --ivory: #faf6ef;
  --ink: #0f0f10;
  --ink-2: #1a1a1d;
  --ink-3: #26262a;
  --brass: #b4843b;
  --brass-2: #d6a85a;
  --red: #c8252c;
  --red-2: #e63946;
  --line: rgba(15,15,16,.12);
  --line-dark: rgba(245,239,230,.14);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'Space Grotesk', monospace;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
}

*{ box-sizing: border-box; margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
html, body{
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection{ background: var(--red); color: #fff; }
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Hide scrollbar but keep functionality */
body::-webkit-scrollbar{ width: 0; background: transparent; }
body{ scrollbar-width: none; }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring{
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: opacity .3s, width .3s, height .3s, background .3s;
}
.cursor-dot{ width: 6px; height: 6px; background: var(--red); }
.cursor-ring{ width: 36px; height: 36px; border: 1px solid rgba(15,15,16,.4); transition: transform .15s ease-out, width .3s, height .3s, border-color .3s; }
.cursor-ring.hover{ width: 60px; height: 60px; border-color: var(--red); background: rgba(200,37,44,.08); }
.cursor-ring.dark{ border-color: rgba(245,239,230,.5); }
@media (max-width: 900px){ .cursor-dot, .cursor-ring{ display: none; } }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: rgba(15,15,16,.06); z-index: 1000;
}
.scroll-progress-bar{
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--red));
  transition: width .1s linear;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
.noise{
  position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ============================================
   LOADER
   ============================================ */
.loader{
  position: fixed; inset: 0; z-index: 10000;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}
.loader.hidden{ opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner{ text-align: center; }
.loader-logo img{ width: 80px; height: 80px; margin: 0 auto 24px; filter: drop-shadow(0 8px 24px rgba(200,37,44,.3)); animation: float 2s ease-in-out infinite; }
.loader-bar{ width: 200px; height: 2px; background: rgba(15,15,16,.1); margin: 0 auto 16px; overflow: hidden; border-radius: 2px; }
.loader-bar span{ display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--brass), var(--red)); animation: loadBar 1.4s ease forwards; }
.loader-text{ font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); opacity: .6; }
@keyframes float{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }
@keyframes loadBar{ to{ width: 100%; } }

/* ============================================
   NAVIGATION
   ============================================ */
.nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .4s ease;
}
.nav.scrolled{
  background: rgba(245,239,230,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav.on-dark:not(.scrolled){
  /* On dark hero, ensure visibility */
}
.nav-inner{
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo{ display: flex; align-items: center; gap: 10px; }
.nav-logo img{ width: 36px; height: 36px; }
.nav-brand{
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--ink); letter-spacing: -.02em;
  transition: color .3s;
}
.nav.on-dark:not(.scrolled) .nav-brand{ color: #fff; }

.nav-links{ display: flex; align-items: center; gap: 32px; }
.nav-links a{
  font-size: 14px; font-weight: 500; color: var(--ink);
  position: relative; transition: color .3s;
}
.nav.on-dark:not(.scrolled) .nav-links a{ color: rgba(255,255,255,.92); }
.nav-links a:not(.nav-cta)::after{
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: right; transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.nav-links a:not(.nav-cta):hover::after{ transform: scaleX(1); transform-origin: left; }

.nav-cta{
  padding: 10px 20px;
  background: var(--red);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600;
  transition: all .3s;
  border: 1px solid var(--red);
}
.nav-cta:hover{ background: var(--ink); border-color: var(--ink); transform: translateY(-1px); }

.nav-toggle{ display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span{ width: 24px; height: 1.5px; background: var(--ink); transition: all .3s; }
.nav.on-dark:not(.scrolled) .nav-toggle span{ background: #fff; }

@media (max-width: 900px){
  .nav-toggle{ display: flex; }
  .nav-links{
    position: fixed; top: 70px; right: 0; bottom: 0; width: 100%;
    background: var(--ivory); flex-direction: column;
    padding: 40px 32px; gap: 24px; align-items: flex-start;
    transform: translateX(100%); transition: transform .4s;
    border-left: 1px solid var(--line);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 22px; font-family: var(--serif); color: var(--ink) !important; }
}

/* ============================================
   SIDE CONTACT TAB
   ============================================ */
.side-contact{
  position: fixed; right: 0; top: 50%; transform: translateY(-50%) rotate(0);
  z-index: 90;
  background: var(--red);
  color: #fff;
  padding: 18px 10px;
  border-radius: 12px 0 0 12px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .3em;
  box-shadow: -4px 4px 20px rgba(200,37,44,.3);
  transition: all .3s ease;
}
.side-contact span{ display: block; }
.side-contact:hover{
  background: var(--ink); padding-right: 14px;
  box-shadow: -4px 4px 24px rgba(15,15,16,.4);
}
@media (max-width: 900px){ .side-contact{ display: none; } }

/* ============================================
   WHATSAPP FLOATER
   ============================================ */
.whatsapp-float{
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .3s ease;
}
.whatsapp-float::before{
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25d366; opacity: 0;
  animation: ripple 2s infinite ease-out;
}
.whatsapp-float:hover{ transform: scale(1.1) rotate(8deg); }
@keyframes ripple{ 0%{ opacity: .8; transform: scale(1); } 100%{ opacity: 0; transform: scale(1.4); } }

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-video{
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.hero-vignette{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(15,15,16,.7) 100%),
    linear-gradient(180deg, rgba(15,15,16,.5) 0%, transparent 30%, rgba(15,15,16,.75) 100%);
}
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,239,230,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,230,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content{
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero-badge{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid rgba(212,168,90,.5);
  border-radius: 100px; background: rgba(212,168,90,.08);
  backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .8s ease forwards .3s;
}
.badge-dot{
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass-2);
  box-shadow: 0 0 12px var(--brass-2);
  animation: pulse 2s infinite;
}
@keyframes pulse{ 0%,100%{ opacity: 1; } 50%{ opacity: .4; } }

.hero-title{
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 28px;
}
.hero-title .line{ display: block; overflow: hidden; }
.hero-title .line:nth-child(1){ opacity: 0; animation: fadeUp .9s ease forwards .5s; }
.hero-title .line:nth-child(2){ opacity: 0; animation: fadeUp .9s ease forwards .7s; }
.hero-title em{ font-style: italic; color: var(--brass-2); font-weight: 400; }

@keyframes fadeUp{ from{ opacity: 0; transform: translateY(30px); } to{ opacity: 1; transform: translateY(0); } }

.hero-sub{
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(245,239,230,.78);
  max-width: 620px; line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp .9s ease forwards .9s;
}

.hero-cta{
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px;
  opacity: 0; animation: fadeUp .9s ease forwards 1.1s;
}

.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 600;
  border-radius: 100px;
  transition: all .35s cubic-bezier(.77,0,.18,1);
  position: relative; overflow: hidden;
  font-family: var(--sans);
}
.btn-primary{
  background: var(--red); color: #fff;
  box-shadow: 0 8px 24px rgba(200,37,44,.35);
}
.btn-primary:hover{ background: #fff; color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,.2); }
.btn-ghost{
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost.light{ color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover{ background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.light:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.btn.full{ width: 100%; justify-content: center; }

.hero-marquee{
  overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(245,239,230,.12);
  border-bottom: 1px solid rgba(245,239,230,.12);
  margin-bottom: 60px;
  opacity: 0; animation: fadeUp .9s ease forwards 1.3s;
}
.hero-marquee-track{
  display: flex; gap: 32px; white-space: nowrap;
  animation: scrollMarquee 30s linear infinite;
  font-family: var(--mono); font-size: 13px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,239,230,.55);
}
.hero-marquee-track span{ display: inline-block; }
@keyframes scrollMarquee{ to{ transform: translateX(-50%); } }

.hero-stats{
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: 1100px; margin: 0 auto; width: 100%;
  border-top: 1px solid rgba(245,239,230,.12);
  padding-top: 32px;
  opacity: 0; animation: fadeUp .9s ease forwards 1.5s;
}
.stat{
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0 24px;
  border-right: 1px solid rgba(245,239,230,.12);
  text-align: center;
}
.stat:last-child{ border-right: none; }
.stat-num, .stat-text{
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  line-height: 1; color: #fff; font-weight: 500;
}
.stat-text{ font-size: clamp(20px, 2.5vw, 28px); line-height: 1.15; }
.stat-suf{ font-family: var(--serif); font-size: 28px; color: var(--brass-2); margin-left: -4px; }
.stat-label{
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(245,239,230,.5);
  margin-top: 8px;
}

.hero-scroll{
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3; width: 24px; height: 40px;
  border: 1px solid rgba(245,239,230,.3); border-radius: 12px;
}
.hero-scroll span{
  display: block; width: 2px; height: 6px; background: var(--brass-2);
  margin: 8px auto 0; border-radius: 2px;
  animation: scrollDot 1.6s infinite ease-in-out;
}
@keyframes scrollDot{ 0%,100%{ transform: translateY(0); opacity: 1; } 50%{ transform: translateY(14px); opacity: 0; } }

@media (max-width: 700px){
  .hero-stats{ grid-template-columns: 1fr; gap: 24px; }
  .stat{ border-right: none; border-bottom: 1px solid rgba(245,239,230,.12); padding-bottom: 24px; }
  .stat:last-child{ border-bottom: none; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section{
  position: relative;
  padding: 120px 32px;
  overflow: hidden;
}
.section-light{ background: var(--cream); color: var(--ink); }
.section-dark{ background: var(--ink); color: #fff; }
.container{ max-width: 1280px; margin: 0 auto; }

.eyebrow{
  display: inline-block;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  padding-bottom: 12px; position: relative;
}
.eyebrow::after{
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 1px; background: var(--red);
}
.eyebrow.light{ color: var(--brass-2); }
.eyebrow.light::after{ background: var(--brass-2); }

.section-title{
  font-family: var(--serif); font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05; font-weight: 500; letter-spacing: -.025em;
  margin-bottom: 24px; max-width: 900px;
}
.section-title.light{ color: #fff; }
.section-title em{ font-style: italic; color: var(--red); font-weight: 400; }
.section-title.light em{ color: var(--brass-2); }

.section-lead{
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55;
  color: var(--ink-3); max-width: 700px; margin-bottom: 28px;
}
.section-lead.light{ color: rgba(245,239,230,.75); }
.section-body{
  font-size: 16px; line-height: 1.7; color: var(--ink-3);
  max-width: 600px; margin-bottom: 24px;
}

.section-head.center{ text-align: center; margin: 0 auto 64px; max-width: 800px; }
.section-head.center .eyebrow::after{ left: 50%; transform: translateX(-50%); }
.section-head.center .section-title{ margin: 0 auto 24px; }
.section-head.center .section-lead{ margin: 0 auto; }

/* Two column layout */
.two-col{
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.two-col.reverse .col-visual{ order: 1; }
.two-col.reverse .col-text{ order: 2; }
@media (max-width: 900px){
  .two-col{ grid-template-columns: 1fr; gap: 48px; }
  .two-col.reverse .col-visual{ order: 2; }
  .two-col.reverse .col-text{ order: 1; }
}

.visual-frame{
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,15,16,.18);
}
.visual-frame img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.visual-frame:hover img{ transform: scale(1.04); }
.frame-corner{ position: absolute; width: 28px; height: 28px; border: 2px solid var(--brass); }
.frame-corner.tl{ top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.frame-corner.tr{ top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.frame-corner.bl{ bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.frame-corner.br{ bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.story-pills{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill{
  display: inline-block; padding: 8px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 900px){ .services-grid{ grid-template-columns: 1fr; } }

.service-card{
  position: relative;
  padding: 36px 28px;
  background: rgba(245,239,230,.04);
  border: 1px solid rgba(245,239,230,.12);
  border-radius: var(--r-md);
  transition: all .5s cubic-bezier(.77,0,.18,1);
  overflow: hidden;
}
.service-card::before{
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212,168,90,.06) 100%);
  opacity: 0; transition: opacity .5s;
}
.service-card:hover{ transform: translateY(-6px); border-color: var(--brass); }
.service-card:hover::before{ opacity: 1; }

.service-num{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em; color: var(--brass-2);
  margin-bottom: 24px;
}
.service-icon{
  width: 56px; height: 56px;
  margin-bottom: 24px;
  color: var(--brass-2);
}
.service-icon svg{ width: 100%; height: 100%; }
.service-card h3{
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; color: #fff; margin-bottom: 12px;
  letter-spacing: -.01em;
}
.service-card p{
  font-size: 14px; line-height: 1.65;
  color: rgba(245,239,230,.68);
}

/* Services flow infographic */
.services-flow{
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 32px;
  background: rgba(245,239,230,.04);
  border: 1px solid rgba(245,239,230,.12);
  border-radius: var(--r-md);
}
.flow-step{
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 16px;
}
.flow-step span{
  font-family: var(--mono); font-size: 11px;
  color: var(--brass-2); letter-spacing: .2em; margin-bottom: 8px;
}
.flow-step b{
  font-family: var(--serif); font-size: 24px;
  font-weight: 500; color: #fff; margin-bottom: 6px;
}
.flow-step i{
  font-style: normal; font-size: 12px;
  color: rgba(245,239,230,.5); letter-spacing: .05em;
}
.flow-arrow{
  flex: 0 0 40px; height: 1px;
  background: linear-gradient(90deg, var(--brass), var(--red));
  position: relative;
}
.flow-arrow::after{
  content: ''; position: absolute; right: -1px; top: -3px;
  width: 0; height: 0;
  border-left: 8px solid var(--red);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
@media (max-width: 900px){
  .services-flow{ flex-direction: column; }
  .flow-arrow{ width: 1px; height: 32px; background: linear-gradient(180deg, var(--brass), var(--red)); }
  .flow-arrow::after{ right: -3px; top: auto; bottom: -1px; border: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 8px solid var(--red); }
}

/* ============================================
   BRANDS
   ============================================ */
.brand-marquee{
  overflow: hidden;
  padding: 10px 0;
  margin: 0 -32px;
  position: relative;
}
.brand-marquee::before, .brand-marquee::after{
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.brand-marquee::before{ left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.brand-marquee::after{ right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }

.brand-track{
  display: flex; gap: 0; width: max-content;
  animation: scrollBrands 45s linear infinite;
}
.brand-marquee.reverse .brand-track{ animation-direction: reverse; animation-duration: 50s; }
.brand-marquee:hover .brand-track{ animation-play-state: paused; }

.brand-set{
  display: flex; align-items: center; gap: 44px;
  padding-right: 44px;
}
.brand-set img{
  height: 38px; width: auto; max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.55);
  transition: filter .4s ease, transform .4s ease;
}

/* Brand count strip */
.brand-count-strip{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 720px; margin: 36px auto 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 4px 20px rgba(15,15,16,.04);
}
.bc-item{
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 0 8px;
  border-right: 1px solid var(--line);
}
.bc-item:last-child{ border-right: none; }
.bc-item b{
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 500; color: var(--ink); line-height: 1;
  display: inline-flex; align-items: flex-start;
}
.bc-item sup{
  font-size: .5em; color: var(--red); margin-left: 2px; margin-top: .2em;
}
.bc-item span{
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
}
@media (max-width: 600px){
  .brand-count-strip{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .bc-item{ border-right: none; }
  .bc-item:nth-child(odd){ border-right: 1px solid var(--line); }
}

/* + 67 more line */
.brand-more{
  display: flex; align-items: center; gap: 24px;
  margin: 28px auto 0;
  max-width: 700px;
  padding: 0 20px;
}
.brand-more-line{
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.brand-more-text{
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-3);
  white-space: nowrap;
}
.brand-more-text b{
  font-style: normal; font-family: var(--sans);
  font-weight: 700; color: var(--red);
}
.brand-set img:hover{
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}
@keyframes scrollBrands{ to{ transform: translateX(-50%); } }

.marketplaces{
  margin-top: 80px;
  padding: 48px;
  background: var(--ink);
  border-radius: var(--r-lg);
  color: #fff;
  position: relative; overflow: hidden;
}
.marketplaces::before{
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(212,168,90,.15), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(200,37,44,.1), transparent 50%);
}
.mp-title{
  position: relative;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass-2); margin-bottom: 32px;
  text-align: center;
}
.mp-grid{
  position: relative;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.mp-pill{
  padding: 14px 24px;
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(245,239,230,.15);
  border-radius: 100px;
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: #fff;
  transition: all .3s;
  display: flex; align-items: center; gap: 10px;
}
.mp-pill small{
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  color: var(--brass-2); padding: 3px 8px;
  border: 1px solid var(--brass);
  border-radius: 100px;
  text-transform: uppercase;
}
.mp-pill:hover{
  background: var(--red); border-color: var(--red);
  transform: translateY(-2px);
}
.mp-pill:hover small{ color: #fff; border-color: rgba(255,255,255,.5); }

/* ============================================
   APPROACH PRINCIPLES
   ============================================ */
.principles{ list-style: none; counter-reset: principle; margin-top: 32px; }
.principles li{
  counter-increment: principle;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid rgba(245,239,230,.12);
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
}
.principles li::before{
  content: '0' counter(principle);
  position: absolute; left: 0; top: 22px;
  font-family: var(--mono); font-size: 13px;
  color: var(--brass-2); letter-spacing: .1em;
}
.principles li b{
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; color: #fff;
}
.principles li span{
  font-size: 14px; line-height: 1.6;
  color: rgba(245,239,230,.65);
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leaders{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 900px){ .leaders{ grid-template-columns: 1fr; gap: 24px; } }

.leader{
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.77,0,.18,1), box-shadow .5s;
}
.leader:hover{
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15,15,16,.15);
}
.leader-photo{
  aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream-2);
}
.leader-photo img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: filter .5s, transform .8s;
}
.leader:hover .leader-photo img{ filter: grayscale(0); transform: scale(1.06); }
.leader h3{
  font-family: var(--serif); font-size: 26px;
  font-weight: 500; padding: 24px 28px 8px;
  letter-spacing: -.01em;
}
.leader p{
  font-size: 14px; line-height: 1.65;
  color: var(--ink-3);
  padding: 0 28px 28px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta{
  position: relative; padding: 140px 32px;
  color: #fff; text-align: center;
  overflow: hidden;
}
.cta-bg{ position: absolute; inset: 0; z-index: 0; }
.cta-bg img{ width: 100%; height: 100%; object-fit: cover; }
.cta-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(15,15,16,.5), rgba(15,15,16,.85)),
    linear-gradient(180deg, rgba(15,15,16,.4), rgba(15,15,16,.9));
}
.cta-content{ position: relative; z-index: 2; max-width: 800px; }
.cta-content .section-title{ margin: 0 auto 24px; }
.cta-content .section-lead{ margin: 0 auto 36px; }
.cta-actions{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer{
  background: var(--ink);
  color: rgba(245,239,230,.7);
  padding: 80px 32px 0;
  font-size: 14px;
}
.footer-grid{
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245,239,230,.1);
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px; } .foot-brand{ grid-column: 1 / -1; } }
@media (max-width: 600px){ .footer-grid{ grid-template-columns: 1fr; } }

.foot-logo{
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.foot-logo img{ width: 32px; height: 32px; }
.foot-logo span{
  font-family: var(--serif); font-size: 22px;
  font-weight: 500; color: #fff;
}
.foot-brand p{ line-height: 1.7; margin-bottom: 20px; max-width: 380px; }
.foot-badges{ display: flex; flex-wrap: wrap; gap: 8px; }
.badge{
  padding: 6px 12px;
  background: rgba(245,239,230,.06);
  border: 1px solid rgba(245,239,230,.15);
  border-radius: 100px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--brass-2);
}

.foot-col h4{
  font-family: var(--serif); font-size: 16px;
  color: #fff; margin-bottom: 16px; font-weight: 500;
}
.foot-col a{
  display: block; padding: 6px 0;
  color: rgba(245,239,230,.65);
  transition: color .3s, transform .3s;
}
.foot-col a:hover{ color: var(--brass-2); transform: translateX(4px); }

.footer-bottom{
  padding: 28px 0;
}
.foot-row{
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  color: rgba(245,239,230,.5);
  letter-spacing: .05em;
}
.foot-host{ color: var(--brass-2); }

/* ============================================
   CONTACT MODAL
   ============================================ */
.modal{
  position: fixed; inset: 0; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 24px;
}
.modal.open{ opacity: 1; pointer-events: auto; }
.modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(15,15,16,.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.modal-card{
  position: relative; z-index: 1;
  max-width: 920px; width: 100%;
  background: var(--ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-height: 90vh; overflow-y: auto;
  transform: scale(.94) translateY(20px);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.modal.open .modal-card{ transform: scale(1) translateY(0); }
.modal-close{
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%; background: rgba(15,15,16,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all .3s;
}
.modal-close:hover{ background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal-grid{
  display: grid; grid-template-columns: 1fr 1.2fr; min-height: 540px;
}
@media (max-width: 768px){ .modal-grid{ grid-template-columns: 1fr; } }

.modal-side{
  background: var(--ink); color: #fff;
  padding: 48px 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.modal-side::before{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(212,168,90,.2), transparent 50%);
}
.modal-side > *{ position: relative; }
.modal-side h3{
  font-family: var(--serif); font-size: 36px;
  font-weight: 500; line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -.02em;
}
.modal-side h3 em{ font-style: italic; color: var(--brass-2); font-weight: 400; }
.modal-side p{ color: rgba(245,239,230,.7); line-height: 1.6; margin-bottom: 32px; }
.modal-contact a{
  display: block; padding: 12px 0;
  border-top: 1px solid rgba(245,239,230,.12);
  font-family: var(--mono); font-size: 13px;
  color: var(--brass-2); letter-spacing: .05em;
  transition: color .3s, padding-left .3s;
}
.modal-contact a:hover{ color: #fff; padding-left: 8px; }
.modal-contact a:last-child{ border-bottom: 1px solid rgba(245,239,230,.12); }

.modal-form{
  padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  align-content: center;
}
.modal-form label{ display: flex; flex-direction: column; gap: 6px; }
.modal-form label.full{ grid-column: 1 / -1; }
.modal-form span{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.modal-form input, .modal-form textarea{
  font-family: var(--sans); font-size: 15px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.modal-form input:focus, .modal-form textarea:focus{
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,37,44,.1);
}
.modal-form textarea{ resize: vertical; min-height: 80px; }
.modal-form .btn{ grid-column: 1 / -1; margin-top: 8px; }
.hidden{ position: absolute; left: -9999px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal]{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].in{
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="stagger"] .service-card{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal="stagger"].in .service-card{
  opacity: 1; transform: translateY(0);
}
[data-reveal="stagger"].in .service-card:nth-child(1){ transition-delay: .05s; }
[data-reveal="stagger"].in .service-card:nth-child(2){ transition-delay: .12s; }
[data-reveal="stagger"].in .service-card:nth-child(3){ transition-delay: .19s; }
[data-reveal="stagger"].in .service-card:nth-child(4){ transition-delay: .26s; }
[data-reveal="stagger"].in .service-card:nth-child(5){ transition-delay: .33s; }
[data-reveal="stagger"].in .service-card:nth-child(6){ transition-delay: .40s; }

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
.blog-hero{
  padding: 180px 32px 80px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
}
.blog-hero::before{
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212,168,90,.15), transparent 60%);
}
.blog-hero > *{ position: relative; }
.blog-hero .eyebrow{ color: var(--brass-2); }
.blog-hero .eyebrow::after{ background: var(--brass-2); left: 50%; transform: translateX(-50%); }

.blog-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 80px 32px 120px;
  max-width: 1280px; margin: 0 auto;
}
@media (max-width: 900px){ .blog-grid{ grid-template-columns: 1fr; } }

.blog-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all .5s cubic-bezier(.77,0,.18,1);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.blog-card::before{
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--red));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.blog-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,15,16,.1); }
.blog-card:hover::before{ transform: scaleX(1); }

.blog-cat{
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.blog-card h3{
  font-family: var(--serif); font-size: 24px;
  font-weight: 500; line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.blog-card p{
  font-size: 14px; line-height: 1.65;
  color: var(--ink-3); margin-bottom: 20px;
  flex-grow: 1;
}
.blog-meta{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; color: var(--ink-3);
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.blog-link{
  font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s;
}
.blog-card:hover .blog-link{ gap: 12px; }

/* ============================================
   UTILITY
   ============================================ */
@media (max-width: 700px){
  .section{ padding: 80px 24px; }
  .hero{ padding: 100px 24px 60px; }
  .footer{ padding: 60px 24px 0; }
  .nav-inner{ padding: 0 24px; }
  .modal-form{ padding: 32px 24px; grid-template-columns: 1fr; }
  .modal-side{ padding: 32px 24px; }
  .marketplaces{ padding: 32px 20px; }
}

/* ============================================
   HERO FLOATING FORM (Desktop)
   Sits on right side of hero, morphs to pill on scroll
   ============================================ */
.hero-form{
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  width: 360px;
  pointer-events: none; /* card handles its own */
}

/* --- Expanded card (default state, on hero) --- */
.hero-form-card{
  pointer-events: auto;
  background: rgba(20, 20, 22, 0.78);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(212, 168, 90, 0.28);
  border-radius: 20px;
  padding: 24px 22px 20px;
  color: #fff;
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform: translateX(0) scale(1);
  opacity: 1;
  transition: transform .55s cubic-bezier(.77,0,.18,1), opacity .45s ease, visibility .45s;
  position: relative;
  overflow: hidden;
}
.hero-form-card::before{
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(212,168,90,.18), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(200,37,44,.12), transparent 50%);
  pointer-events: none;
}
.hero-form.collapsed .hero-form-card{
  transform: translateX(120%) scale(.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-form-close{
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  z-index: 2;
}
.hero-form-close:hover{ background: rgba(255,255,255,.14); color: #fff; }

.hero-form-head{ position: relative; margin-bottom: 18px; }
.hero-form-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-2);
  padding: 6px 12px;
  background: rgba(212,168,90,.1);
  border: 1px solid rgba(212,168,90,.25);
  border-radius: 100px;
  margin-bottom: 14px;
}
.hero-form-eyebrow .badge-dot{ width: 5px; height: 5px; }

.hero-form-head h3{
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.015em;
  margin-bottom: 6px;
  color: #fff;
}
.hero-form-head h3 em{ font-style: italic; color: var(--brass-2); font-weight: 400; }
.hero-form-head p{
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(245,239,230,.65);
}

.hero-form-body{
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.hf-row{ display: flex; gap: 8px; }
.hf-contact{ display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.hero-form-body input,
.hero-form-body select{
  width: 100%;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  transition: all .3s;
  font-weight: 400;
}
.hero-form-body input::placeholder{ color: rgba(245,239,230,.45); }
.hero-form-body select{ color: rgba(245,239,230,.7); cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d6a85a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.hero-form-body select option{ background: var(--ink); color: #fff; }
.hero-form-body input:focus,
.hero-form-body select:focus{
  outline: none;
  border-color: var(--brass-2);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(212,168,90,.15);
}
.hero-form-body input.invalid,
.hero-form-body .hf-contact.invalid input{
  border-color: var(--red-2);
  box-shadow: 0 0 0 3px rgba(230,57,70,.15);
}

.hf-hint{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: rgba(245,239,230,.4);
  margin: -4px 0 2px;
  transition: color .3s;
}
.hf-hint.error{ color: var(--red-2); }

.hf-submit{
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 13.5px;
  margin-top: 4px;
}

.hf-trust{
  margin-top: 10px;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(245,239,230,.4);
  line-height: 1.5;
}

/* --- Collapsed sticky pill --- */
.hero-form-pill{
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(120%) scale(.8);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px 11px 13px;
  background: var(--red);
  color: #fff;
  border-radius: 100px 0 0 100px;
  box-shadow: -6px 6px 20px rgba(200,37,44,.35);
  transition: transform .55s cubic-bezier(.77,0,.18,1), opacity .45s ease .1s, visibility .45s, box-shadow .3s, background .3s;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.hero-form-pill svg{ width: 16px; height: 16px; }
.hero-form-pill svg{ flex-shrink: 0; }
.hero-form-pill::before{
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(200,37,44,.4);
  opacity: 0;
  animation: pillPulse 2.5s infinite ease-out;
}
@keyframes pillPulse{
  0%{ opacity: .6; transform: scale(1); }
  100%{ opacity: 0; transform: scale(1.15); }
}
.hero-form-pill:hover{
  background: var(--ink);
  box-shadow: -8px 8px 32px rgba(15,15,16,.5);
  padding-right: 26px;
}

.hero-form.collapsed .hero-form-pill{
  transform: translateY(-50%) translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
}

/* Hide side-contact tab when hero form is showing on desktop */
@media (min-width: 901px){
  .side-contact{ display: none; }
}

/* --- Mobile: hide expanded form, show only pill icon (compact, no label) --- */
@media (max-width: 900px){
  .hero-form{
    right: 0;
    top: auto;
    bottom: 90px; /* sit above WhatsApp */
    transform: none;
    width: auto;
  }
  .hero-form-card{
    display: none !important;
  }
  .hero-form-pill{
    position: relative;
    top: auto;
    right: auto;
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 11px;
    border-radius: 100px 0 0 100px;
  }
  .hero-form-pill .pill-label{
    display: none; /* icon-only on mobile */
  }
}

/* Reduce hero content max-width on desktop so the form doesn't overlap headline */
@media (min-width: 1100px){
  .hero-content{
    max-width: 760px;
    margin-left: 0;
    margin-right: auto;
    padding-left: 60px;
  }
  .hero-stats{
    max-width: 760px;
    margin-left: 0;
    padding-left: 60px;
  }
  .hero{
    padding-right: 440px; /* leave room for form on right */
  }
}

@media (min-width: 901px) and (max-width: 1099px){
  .hero-form{
    width: 320px;
    right: 24px;
  }
  .hero-form-head h3{ font-size: 19px; }
  .hero{
    padding-right: 380px;
  }
  .hero-content, .hero-stats{
    max-width: 100%;
  }
}

/* ============================================
   TESTIMONIALS (scrolling marquee)
   ============================================ */
.testimonials-section{
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  overflow: hidden;
}
.testimonials-marquee{
  overflow: hidden;
  margin: 0 -32px;
  padding: 12px 0;
  position: relative;
  cursor: grab;
}
.testimonials-marquee::before,
.testimonials-marquee::after{
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2; pointer-events: none;
}
.testimonials-marquee::before{ left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.testimonials-marquee::after{ right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.testimonials-track{
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  animation: scrollTestimonials 60s linear infinite;
}
.testimonials-marquee:hover .testimonials-track{ animation-play-state: paused; }
@keyframes scrollTestimonials{ to{ transform: translateX(-50%); } }
.testimonials-track .testimonial{
  width: 380px; flex-shrink: 0; min-height: 280px;
}

.testimonial{
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .5s cubic-bezier(.77,0,.18,1);
  overflow: hidden;
}
.testimonial::before{
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease;
}
.testimonial:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15,15,16,.1);
  border-color: rgba(212,168,90,.4);
}
.testimonial:hover::before{ transform: scaleX(1); }

.quote-mark{
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: var(--brass);
  opacity: .14;
  font-weight: 600;
  pointer-events: none;
}

.t-quote{
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.t-author{
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.t-initial{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  color: var(--brass-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  flex-shrink: 0;
  border: 1px solid var(--brass);
}
.t-meta{ display: flex; flex-direction: column; gap: 2px; }
.t-meta b{
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
}
.t-meta span{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================
   PACKAGE JOURNEY (Visible vs Invisible)
   ============================================ */
.section-journey{
  background:
    radial-gradient(ellipse at top, rgba(212,168,90,.08), transparent 60%),
    var(--ink);
  color: #fff;
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}
.section-journey::before{
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,239,230,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,230,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.section-journey .container{ position: relative; }

.journey-track{
  position: relative;
  margin-top: 64px;
}

/* Connecting rail */
.journey-rail{
  position: absolute;
  top: 60px; left: 6%; right: 6%; height: 2px;
  background: rgba(245,239,230,.1);
  z-index: 1;
  border-radius: 2px;
}
.journey-rail-fill{
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--brass) 0%, var(--red) 100%);
  width: 0%;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(212,168,90,.5);
  transition: width .15s linear;
}
.journey-package{
  position: absolute;
  top: 50%; left: 0;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--ink), 0 0 24px rgba(200,37,44,.6);
  transition: left .15s linear;
  z-index: 3;
}
.journey-package::before{
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--red);
  opacity: .4;
  animation: pulse 2s infinite;
}

.journey-stages{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.journey-stage{
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 6px;
}
.j-step{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .25em;
  color: var(--brass-2);
  margin-bottom: 10px;
}
.j-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(212,168,90,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass-2);
  margin-bottom: 16px;
  position: relative;
  transition: all .4s ease;
}
.j-icon svg{ width: 22px; height: 22px; }
.journey-stage:hover .j-icon{
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(200,37,44,.3);
}
.journey-stage h4{
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -.005em;
}

.j-visible, .j-invisible{
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  text-align: left;
  border: 1px solid;
}
.j-visible{
  background: rgba(212,168,90,.06);
  border-color: rgba(212,168,90,.2);
}
.j-invisible{
  background: rgba(200,37,44,.05);
  border-color: rgba(200,37,44,.15);
  position: relative;
  overflow: hidden;
}
.j-invisible::before{
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(245,239,230,.02) 0,
    rgba(245,239,230,.02) 2px,
    transparent 2px,
    transparent 6px
  );
  pointer-events: none;
}
.j-visible span, .j-invisible span{
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.j-visible span{ color: var(--brass-2); }
.j-invisible span{ color: var(--red-2); }
.j-visible p, .j-invisible p{
  font-size: 12px;
  line-height: 1.4;
  color: rgba(245,239,230,.78);
  position: relative;
}

@media (max-width: 1100px){
  .journey-stages{ grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .journey-rail{ display: none; }
}
@media (max-width: 600px){
  .journey-stages{ grid-template-columns: 1fr; gap: 24px; }
  .journey-stage{ flex-direction: row; align-items: flex-start; text-align: left; gap: 16px; }
  .j-step{ margin-bottom: 0; min-width: 30px; }
  .j-icon{ flex-shrink: 0; margin-bottom: 0; }
  .journey-stage > h4, .journey-stage > .j-visible, .journey-stage > .j-invisible{ width: 100%; }
  .journey-stage{ flex-wrap: wrap; }
  .journey-stage h4{ width: calc(100% - 110px); margin-top: 12px; }
}

/* ============================================
   SCROLL PARALLAX & IMAGE EFFECTS
   ============================================ */
.visual-frame{
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(15,15,16,.18);
  /* Subtle clip-reveal on scroll */
}
.visual-frame img{
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Parallax: image moves slower than container on scroll */
.parallax-img{
  height: 115%;
  margin-top: -7.5%;
  transform: translateY(var(--parallax, 0px));
  transition: none;
}

/* Ken Burns slow drift on idle */
@keyframes kenBurns{
  0%, 100%{ transform: scale(1.04) translate(0, 0); }
  50%{ transform: scale(1.08) translate(-1%, -1%); }
}
.visual-frame:not(:hover) .ken-burns{
  animation: kenBurns 20s ease-in-out infinite;
}

/* Reveal-on-scroll for images: slide + scale + clip */
.image-reveal{
  position: relative;
  overflow: hidden;
}
.image-reveal::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--brass) 0%, var(--red) 100%);
  transform-origin: right;
  transition: transform 1.2s cubic-bezier(.77,0,.18,1);
  z-index: 3;
}
.image-reveal.in::after{
  transform: scaleX(0);
}
.image-reveal img{
  transform: scale(1.15);
  transition: transform 1.6s cubic-bezier(.22,.61,.36,1);
}
.image-reveal.in img{
  transform: scale(1);
}

/* Leader card image hover ripple */
.leader-photo{
  position: relative;
  overflow: hidden;
}
.leader-photo::after{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(200,37,44,.18) 0%,
    transparent 40%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.leader:hover .leader-photo::after{ opacity: 1; }

/* CTA background subtle parallax */
.cta-bg img{
  transform: translateY(var(--cta-parallax, 0px)) scale(1.1);
  transition: none;
  will-change: transform;
}

/* Service card subtle tilt on hover */
.service-card{
  transform-style: preserve-3d;
  perspective: 1000px;
}
.service-card .service-icon{
  transition: transform .6s cubic-bezier(.77,0,.18,1);
}
.service-card:hover .service-icon{
  transform: rotateY(180deg);
}

/* Pin & reveal effect for sections with images */
@media (prefers-reduced-motion: no-preference){
  .visual-frame img{
    transform: scale(1.02);
  }
  .visual-frame.in img{
    transform: scale(1);
  }
}
